about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2015-11-16 11:23:06 +0100
committerDomen Kožar <domen@dev.si>2015-11-16 11:23:06 +0100
commit4755afc3857d9e57cd0544038313c75af0c80b22 (patch)
tree7b6beda1745e8f5d21265f140c92d90860a01683 /pkgs/development/web/nodejs
parent2cb80f7fbca353aca36d04d2dfd981995e2d8f6b (diff)
parentb666ac3e9ff3f08b120d068770768be580e67f76 (diff)
downloadnixlib-4755afc3857d9e57cd0544038313c75af0c80b22.tar
nixlib-4755afc3857d9e57cd0544038313c75af0c80b22.tar.gz
nixlib-4755afc3857d9e57cd0544038313c75af0c80b22.tar.bz2
nixlib-4755afc3857d9e57cd0544038313c75af0c80b22.tar.lz
nixlib-4755afc3857d9e57cd0544038313c75af0c80b22.tar.xz
nixlib-4755afc3857d9e57cd0544038313c75af0c80b22.tar.zst
nixlib-4755afc3857d9e57cd0544038313c75af0c80b22.zip
Merge commit 'b666ac3e9ff3f08b120d068770768be580e67f76' (staging)
Merge rest of the fixes from staging
Diffstat (limited to 'pkgs/development/web/nodejs')
-rw-r--r--pkgs/development/web/nodejs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/web/nodejs/default.nix b/pkgs/development/web/nodejs/default.nix
index 2a4a7244d4d6..05296149337b 100644
--- a/pkgs/development/web/nodejs/default.nix
+++ b/pkgs/development/web/nodejs/default.nix
@@ -7,7 +7,7 @@
 assert stdenv.system != "armv5tel-linux";
 
 let
-  version = "4.1.2";
+  version = "4.2.2";
 
   deps = {
     inherit openssl zlib libuv;
@@ -31,7 +31,7 @@ in stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz";
-    sha256 = "0j9ca1fjgljzh4m9l9d8g81510j0ljvaf031qij9psiz79qc7gpy";
+    sha256 = "1c8c45b39fg2mz1c88jl0q0yhpxixdr25rpmpfskdd1m6hshkrq0";
   };
 
   configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ];