nodejs: 6.9.1 -> 6.9.5

This commit is contained in:
Robin Gloster 2017-02-03 02:21:52 +01:00
parent 5063a8099b
commit e400eb36d1
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

View File

@ -10,12 +10,10 @@ let
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
version = "6.9.1";
version = "6.9.5";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "0a87vzb33xdg8w0xi3c605hfav3c9m4ylab1436whz3p0l9qvp8b";
sha256 = "1cxnsprv2sy2djskx6yfw14f578s1fwzvmvnw7rh75djajix3znp";
};
})