about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-07-22 19:55:28 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-07-22 19:55:28 -0500
commit71532e92dbce6fcc1ca87e48e5a9b402030b8908 (patch)
tree4e19a243a28a2160f1d2773d567508618c15075d /pkgs/development/web/nodejs
parentfa2b5215d04b6b5c65eb8cf0a6b912afec6ccfe7 (diff)
downloadnixlib-71532e92dbce6fcc1ca87e48e5a9b402030b8908.tar
nixlib-71532e92dbce6fcc1ca87e48e5a9b402030b8908.tar.gz
nixlib-71532e92dbce6fcc1ca87e48e5a9b402030b8908.tar.bz2
nixlib-71532e92dbce6fcc1ca87e48e5a9b402030b8908.tar.lz
nixlib-71532e92dbce6fcc1ca87e48e5a9b402030b8908.tar.xz
nixlib-71532e92dbce6fcc1ca87e48e5a9b402030b8908.tar.zst
nixlib-71532e92dbce6fcc1ca87e48e5a9b402030b8908.zip
nodejs-14_x: 14.5.0 -> 14.6.0
https://github.com/nodejs/node/releases/tag/v14.6.0
Diffstat (limited to 'pkgs/development/web/nodejs')
-rw-r--r--pkgs/development/web/nodejs/v14.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/web/nodejs/v14.nix b/pkgs/development/web/nodejs/v14.nix
index 37156b5a966f..a315911789ea 100644
--- a/pkgs/development/web/nodejs/v14.nix
+++ b/pkgs/development/web/nodejs/v14.nix
@@ -1,14 +1,14 @@
-{ callPackage, openssl, icu66, python3, enableNpm ? true }:
+{ callPackage, openssl, icu67, python3, enableNpm ? true }:
 
 let
   buildNodejs = callPackage ./nodejs.nix {
     inherit openssl;
-    icu = icu66;
+    icu = icu67;
     python = python3;
   };
 in
   buildNodejs {
     inherit enableNpm;
-    version = "14.5.0";
-    sha256 = "1d6w7ycdiqbkip7m6m8xly31qgx7ywakzvrnqdq8ini5sricjlgb";
+    version = "14.6.0";
+    sha256 = "153a07ffrmvwbsc78wrc0xnwymmzrhva0kn6mgnfi3086v3h1wss";
   }