summary refs log tree commit diff
path: root/pkgs/development/web/nodejs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-04-27 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-04-27 04:20:00 +0000
commitc1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b (patch)
tree28916b0784fd278c1290f1db4960ad3f1d14ba8c /pkgs/development/web/nodejs
parent44a2b16277e231ca1389bd1d62088f965610a5b3 (diff)
downloadnixpkgs-c1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b.tar
nixpkgs-c1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b.tar.gz
nixpkgs-c1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b.tar.bz2
nixpkgs-c1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b.tar.lz
nixpkgs-c1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b.tar.xz
nixpkgs-c1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b.tar.zst
nixpkgs-c1da6fc4ce95fe59f2c0c8e7cee580a37e0bb94b.zip
nodejs-16_x: 16.14.2 -> 16.15.0
https://github.com/nodejs/node/releases/tag/v16.15.0
Diffstat (limited to 'pkgs/development/web/nodejs')
-rw-r--r--pkgs/development/web/nodejs/v16.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/development/web/nodejs/v16.nix b/pkgs/development/web/nodejs/v16.nix
index 7f3dce2d70c..3c90b7f665a 100644
--- a/pkgs/development/web/nodejs/v16.nix
+++ b/pkgs/development/web/nodejs/v16.nix
@@ -1,4 +1,4 @@
-{ callPackage, fetchpatch, openssl, python3, enableNpm ? true }:
+{ callPackage, openssl, python3, enableNpm ? true }:
 
 let
   buildNodejs = callPackage ./nodejs.nix {
@@ -8,15 +8,9 @@ let
 in
   buildNodejs {
     inherit enableNpm;
-    version = "16.14.2";
-    sha256 = "sha256-6SLiFcxo61+U0z6KC2HiyGO3cxzIYAq5VdOCLakP+NE=";
+    version = "16.15.0";
+    sha256 = "sha256-oPgS78Q/eDIeygiVeWCkj15r+XAE1QWMjdOwPGRupPc=";
     patches = [
       ./disable-darwin-v8-system-instrumentation.patch
-      # Fixes node incorrectly building vendored OpenSSL when we want system OpenSSL.
-      # https://github.com/nodejs/node/pull/40965
-      (fetchpatch {
-        url = "https://github.com/nodejs/node/commit/65119a89586b94b0dd46b45f6d315c9d9f4c9261.patch";
-        sha256 = "sha256-dihKYEdK68sQIsnfTRambJ2oZr0htROVbNZlFzSAL+I=";
-      })
     ];
   }