nodejs_20: 20.16.0 -> 20.17.0 (#336388)

This commit is contained in:
Antoine du Hamel
2024-08-23 11:41:20 +02:00
committed by GitHub
parent 078ccdfa09
commit 45db1ff7c1
+3 -11
View File
@@ -1,4 +1,4 @@
{ callPackage, fetchpatch2, openssl, python3, enableNpm ? true }:
{ callPackage, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
@@ -12,8 +12,8 @@ let
in
buildNodejs {
inherit enableNpm;
version = "20.16.0";
sha256 = "cd6c8fc3ff2606aadbc7155db6f7e77247d2d0065ac18e2f7f049095584b8b46";
version = "20.17.0";
sha256 = "9abf03ac23362c60387ebb633a516303637145cb3c177be3348b16880fd8b28c";
patches = [
./configure-emulator.patch
./configure-armv6-vfpv2.patch
@@ -21,13 +21,5 @@ buildNodejs {
./bypass-darwin-xcrun-node16.patch
./node-npm-build-npm-package-logic.patch
./use-correct-env-in-tests.patch
(fetchpatch2 {
url = "https://github.com/nodejs/node/commit/87598d4b63ef2c827a2bebdfa0f1540c35718519.patch";
hash = "sha256-efRJ2nN9QXaT91SQTB+ESkHvXtBq30Cb9BEDEZU9M/8=";
})
(fetchpatch2 {
url = "https://github.com/nodejs/node/commit/d0a6b605fba6cd69a82e6f12ff0363eef8fe1ee9.patch";
hash = "sha256-TfYal/PikRZHL6zpAlC3SmkYXCe+/8Gs83dLX/X/P/k=";
})
] ++ gypPatches;
}