about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRok Garbas <rok@garbas.si>2016-05-18 12:54:23 +0200
committerRok Garbas <rok@garbas.si>2016-05-18 12:54:23 +0200
commit0431fe6194061f894821778051ce64dc94df2ef1 (patch)
treee92a3d1f03e280232197a6c5a6f3aefc8595ac50
parentd3da0bd78f1a6e646a9369f32a16a4838a6f5384 (diff)
parent22b0cb9a726098c3b034c373297554c7af5b3aac (diff)
downloadnixlib-0431fe6194061f894821778051ce64dc94df2ef1.tar
nixlib-0431fe6194061f894821778051ce64dc94df2ef1.tar.gz
nixlib-0431fe6194061f894821778051ce64dc94df2ef1.tar.bz2
nixlib-0431fe6194061f894821778051ce64dc94df2ef1.tar.lz
nixlib-0431fe6194061f894821778051ce64dc94df2ef1.tar.xz
nixlib-0431fe6194061f894821778051ce64dc94df2ef1.tar.zst
nixlib-0431fe6194061f894821778051ce64dc94df2ef1.zip
Merge pull request #15529 from holidaycheck/node-6.2.0
nodejs: 6.1.0 -> 6.2.0
-rw-r--r--pkgs/development/web/nodejs/v6.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/web/nodejs/v6.nix b/pkgs/development/web/nodejs/v6.nix
index d331686e4370..7ce41e3fcdfe 100644
--- a/pkgs/development/web/nodejs/v6.nix
+++ b/pkgs/development/web/nodejs/v6.nix
@@ -4,9 +4,9 @@
 }@args:
 
 import ./nodejs.nix (args // rec {
-  version = "6.1.0";
+  version = "6.2.0";
   src = fetchurl {
     url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.gz";
-    sha256 = "1hsbmr3yc6zmyhz058zfxg77dzjhk94g1k0y65p6xq8ihq5yyrwy";
+    sha256 = "1fcldsnkk6px5fms405j9z2yv6mmscin5x7sma8bdavqgn283zgw";
   };
 })