summary refs log tree commit diff
diff options
context:
space:
mode:
authorMathias Schreck <schreck.mathias@googlemail.com>2017-10-15 21:50:53 +0200
committerRobin Gloster <mail@glob.in>2017-10-16 02:36:49 +0200
commitcd9d780f894a0758ce0118945ee981d585116a3c (patch)
treeaba43620647ef8daa4bcd70f21e41bbb0528964f
parent8c85edb446872b5e97022044c9e0b5e4ff0747e8 (diff)
downloadnixlib-cd9d780f894a0758ce0118945ee981d585116a3c.tar
nixlib-cd9d780f894a0758ce0118945ee981d585116a3c.tar.gz
nixlib-cd9d780f894a0758ce0118945ee981d585116a3c.tar.bz2
nixlib-cd9d780f894a0758ce0118945ee981d585116a3c.tar.lz
nixlib-cd9d780f894a0758ce0118945ee981d585116a3c.tar.xz
nixlib-cd9d780f894a0758ce0118945ee981d585116a3c.tar.zst
nixlib-cd9d780f894a0758ce0118945ee981d585116a3c.zip
nodejs: 8.6.0 -> 8.7.0
-rw-r--r--pkgs/development/web/nodejs/v8.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/web/nodejs/v8.nix b/pkgs/development/web/nodejs/v8.nix
index 013cab8f57bc..560df06b8c53 100644
--- a/pkgs/development/web/nodejs/v8.nix
+++ b/pkgs/development/web/nodejs/v8.nix
@@ -10,11 +10,11 @@ let
   baseName = if enableNpm then "nodejs" else "nodejs-slim";
 in
   stdenv.mkDerivation (nodejs // rec {
-    version = "8.6.0";
+    version = "8.7.0";
     name = "${baseName}-${version}";
     src = fetchurl {
       url = "https://nodejs.org/download/release/v${version}/node-v${version}.tar.xz";
-      sha256 = "14vy9xnyfz44j460hkrx423g7acpzzyqlxiv6sgmna9qj8872w5i";
+      sha256 = "16mml3cwjnq7yf9yd67d2dybav3nvbnk89fkixs1wz7fd26d05ss";
     };
 
     patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];