summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine du Hamel <duhamelantoine1995@gmail.com>2025-01-07 21:16:50 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2025-01-21 10:40:38 +0000
commit16e177c9712998b83e43157f9debee44a05fc31a (patch)
tree78a98e32612c946e314dbceba2bc8b0197861ab4
parentgoogle-chrome: Fix QT support (diff)
downloadnixpkgs-16e177c9712998b83e43157f9debee44a05fc31a.tar.gz
nodejs_23: 23.5.0 -> 23.6.0
(cherry picked from commit f21517a167a73a6873d42a858734f598265d7b4e)
-rw-r--r--pkgs/development/web/nodejs/v23.nix15
1 files changed, 11 insertions, 4 deletions
diff --git a/pkgs/development/web/nodejs/v23.nix b/pkgs/development/web/nodejs/v23.nix
index 712c4d41d3a7..fbf703521091 100644
--- a/pkgs/development/web/nodejs/v23.nix
+++ b/pkgs/development/web/nodejs/v23.nix
@@ -14,8 +14,8 @@ let
in
buildNodejs {
inherit enableNpm;
- version = "23.5.0";
- sha256 = "32e77b36c0774c68baab41bc7c2acc58663ca0a2b7c4d3e9bec6f761c15fdac0";
+ version = "23.6.0";
+ sha256 = "d6f3f136dc26d61bd1bafae2a9fc0d5e7f713a6f0067c5e10351bc7ca6574dcd";
patches = [
./configure-emulator.patch
./configure-armv6-vfpv2.patch
@@ -55,8 +55,15 @@ buildNodejs {
})
# FIXME: remove after a minor point release
(fetchpatch2 {
- url = "https://github.com/nodejs/node/commit/49acdc8748fe9fe83bc1b444e24c456dff00ecc5.patch?full_index=1";
- hash = "sha256-iK7bj4KswTeQ9I3jJ22ZPTsvCU8xeGGXEOo43dxg3Mk=";
+ url = "https://github.com/nodejs/node/commit/d0ff34f4b690ad49c86b6df8fd424f39d183e1a6.patch?full_index=1";
+ hash = "sha256-ezcCrg7UwK091pqYxXJn4ay9smQwsrYeMO/NBE7VaM8=";
+ })
+ # test-icu-env is failing on ICU 74.2
+ # FIXME: remove once https://github.com/nodejs/node/pull/56661 is included in a next release
+ (fetchpatch2 {
+ url = "https://github.com/nodejs/node/commit/a364ec1d1cbbd5a6d20ee54d4f8648dd7592ebcd.patch?full_index=1";
+ hash = "sha256-EL1NgCBzz5O1spwHgocLm5mkORAiqGFst0N6pc3JvFg=";
+ revert = true;
})
];
}