nodejs_22: 22.15.1 -> 22.16.0 (#409459)

Changed files
+7 -5
pkgs
development
web
nodejs
+7 -5
pkgs/development/web/nodejs/v22.nix
···
in
buildNodejs {
inherit enableNpm;
-
version = "22.15.1";
-
sha256 = "c19f0177d21c621746625e5f37590bd0d79a72043b77b53784cba5f145e7263e";
patches =
(
if (stdenv.hostPlatform.emulatorAvailable buildPackages) then
···
./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
(fetchpatch2 {
-
url = "https://github.com/nodejs/node/commit/33f6e1ea296cd20366ab94e666b03899a081af94.patch?full_index=1";
-
hash = "sha256-aVBMcQlhQeviUQpMIfC988jjDB2BgYzlMYsq+w16mzU=";
})
];
}
···
in
buildNodejs {
inherit enableNpm;
+
version = "22.16.0";
+
sha256 = "720894f323e5c1ac24968eb2676660c90730d715cb7f090be71a668662a17c37";
patches =
(
if (stdenv.hostPlatform.emulatorAvailable buildPackages) then
···
./node-npm-build-npm-package-logic.patch
./use-correct-env-in-tests.patch
./bin-sh-node-run-v22.patch
+
+
# Can be removed after https://github.com/NixOS/nixpkgs/pull/403958.
(fetchpatch2 {
+
url = "https://github.com/nodejs/node/commit/9aa57bf8dab2dbfb8b6974fe71d5dbe6daf66244.patch?full_index=1";
+
hash = "sha256-k3h8mPgvaIYGAkGmaL+ix7kUnyLw4/PF7wXMAWrPMXo=";
+
revert = true;
})
];
}