nodejs: 7.2.1 -> 7.6.0

This commit is contained in:
Maximilian Bosch 2017-02-23 23:38:35 +01:00
parent afb7d04dd6
commit e20575cf5f
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -10,11 +10,11 @@ let
baseName = if enableNpm then "nodejs" else "nodejs-slim";
in
stdenv.mkDerivation (nodejs // rec {
version = "7.2.1";
version = "7.6.0";
name = "${baseName}-${version}";
src = fetchurl {
url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
sha256 = "03fqv6k8y42ldnrz4iirhwg6wdyw8z95h9h40igiriicbnm072y0";
sha256 = "1adldbhza422951i9rk69x75apj9rdqlx1pm8ybb9w7zjqk09ybg";
};
})