Merge pull request #20975 from holidaycheck/node-7.2.1

nodejs: 7.1.0 -> 7.2.1

authored by

Jaka Hudoklin and committed by
GitHub
de710794 f1d93906

+2 -2
+2 -2
pkgs/development/web/nodejs/v7.nix
··· 10 10 baseName = if enableNpm then "nodejs" else "nodejs-slim"; 11 11 in 12 12 stdenv.mkDerivation (nodejs // rec { 13 - version = "7.1.0"; 13 + version = "7.2.1"; 14 14 name = "${baseName}-${version}"; 15 15 src = fetchurl { 16 16 url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz"; 17 - sha256 = "10a9rwi9v8ylpxydfh1f59smqbljk5axqwghp1qszqwh40d87bjm"; 17 + sha256 = "03fqv6k8y42ldnrz4iirhwg6wdyw8z95h9h40igiriicbnm072y0"; 18 18 }; 19 19 20 20 })