nodejs_22: 22.15.1 -> 22.16.0 (#409459)

This commit is contained in:
Arne Keller
2025-05-21 21:41:42 +02:00
committed by GitHub
+7 -5
View File
@@ -17,8 +17,8 @@ let
in
buildNodejs {
inherit enableNpm;
version = "22.15.1";
sha256 = "c19f0177d21c621746625e5f37590bd0d79a72043b77b53784cba5f145e7263e";
version = "22.16.0";
sha256 = "720894f323e5c1ac24968eb2676660c90730d715cb7f090be71a668662a17c37";
patches =
(
if (stdenv.hostPlatform.emulatorAvailable buildPackages) then
@@ -51,10 +51,12 @@ buildNodejs {
./node-npm-build-npm-package-logic.patch
./use-correct-env-in-tests.patch
./bin-sh-node-run-v22.patch
# fix test failure on macos 15.4
# Can be removed after https://github.com/NixOS/nixpkgs/pull/403958.
(fetchpatch2 {
url = "https://github.com/nodejs/node/commit/33f6e1ea296cd20366ab94e666b03899a081af94.patch?full_index=1";
hash = "sha256-aVBMcQlhQeviUQpMIfC988jjDB2BgYzlMYsq+w16mzU=";
url = "https://github.com/nodejs/node/commit/9aa57bf8dab2dbfb8b6974fe71d5dbe6daf66244.patch?full_index=1";
hash = "sha256-k3h8mPgvaIYGAkGmaL+ix7kUnyLw4/PF7wXMAWrPMXo=";
revert = true;
})
];
}