nodejs-16_x: 16.13.0 -> 16.13.2

(cherry picked from commit 2ac55cedc9)
This commit is contained in:
Moritz Hedtke
2022-01-11 08:15:38 +00:00
parent acc1494a9a
commit dcbb438588

View File

@@ -1,4 +1,4 @@
{ callPackage, openssl, python3, enableNpm ? true }:
{ callPackage, fetchpatch, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
@@ -8,7 +8,15 @@ let
in
buildNodejs {
inherit enableNpm;
version = "16.13.0";
sha256 = "1k6bgs83s5iaawi63dcc826g23lfqr13phwbbzwx0pllqcyln49j";
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
version = "16.13.2";
sha256 = "185lm13q0kwz0qimc38c7mxn8ml6m713pjdjsa9jna9az4gxxccq";
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=";
})
];
}