nodejs: 6.9.5 -> 6.11.1

This commit is contained in:
adisbladis 2017-07-14 12:31:09 +08:00
parent f33f7dc0fa
commit fffe1efa03
No known key found for this signature in database
GPG Key ID: ED58F95069B004F5

View File

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