summaryrefslogtreecommitdiff
path: root/gnu/packages/node.scm
diff options
context:
space:
mode:
authorJelle Licht <jlicht@fsfe.org>2026-06-26 11:01:48 +0200
committerAndreas Enge <andreas@enge.fr>2026-07-08 18:33:28 +0200
commit0079e45e2152e91f9e1d4960a4867565ad85db84 (patch)
tree12d2068d91ee14839e06c514a35657ba8c003454 /gnu/packages/node.scm
parenta472066f0c673557922586f582aafec84ad2c03c (diff)
gnu: node-lts: Update to 24.18.0.
* gnu/packages/node.scm (node-lts): Update to 24.18.0. [inputs]: Replace nghttp2 by nghttps2-for-node-lts. [native-inputs]: Replace ngttp2 by nghttp2-for-node-lts. * gnu/packages/patches/node-fix-eventloopdelay-test.patch: Remove file. * gnu/local.mk (dist_patch_DATA): Unregister patch. Change-Id: I0758bae0c7a5da44861c1e5c56483e5e1cecf8a7
Diffstat (limited to 'gnu/packages/node.scm')
-rw-r--r--gnu/packages/node.scm11
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/node.scm b/gnu/packages/node.scm
index 49857fd594e..bb2ab5d3dc1 100644
--- a/gnu/packages/node.scm
+++ b/gnu/packages/node.scm
@@ -747,14 +747,14 @@ source files.")
747(define-public node-lts 747(define-public node-lts
748 (package 748 (package
749 (inherit node-bootstrap) 749 (inherit node-bootstrap)
750 (version "24.16.0") 750 (version "24.18.0")
751 (source (origin 751 (source (origin
752 (method url-fetch) 752 (method url-fetch)
753 (uri (string-append "https://nodejs.org/dist/v" version 753 (uri (string-append "https://nodejs.org/dist/v" version
754 "/node-v" version ".tar.gz")) 754 "/node-v" version ".tar.gz"))
755 (sha256 755 (sha256
756 (base32 756 (base32
757 "0j25mpkmdjn565swb6g4x7myd6k48vfsijnwdpx59jvn70pd64gm")) 757 "1dvy8y51qad7gx5fhlzbfrmav5c9rlasckgxd7n3k1qxnikq0d68"))
758 (modules '((guix build utils))) 758 (modules '((guix build utils)))
759 (snippet 759 (snippet
760 '(begin 760 '(begin
@@ -783,8 +783,7 @@ source files.")
783 "deps/llhttp" 783 "deps/llhttp"
784 "deps/uv" 784 "deps/uv"
785 "deps/zlib" 785 "deps/zlib"
786 "deps/zstd")))) 786 "deps/zstd"))))))
787 (patches (search-patches "node-fix-eventloopdelay-test.patch"))))
788 (arguments 787 (arguments
789 (substitute-keyword-arguments arguments 788 (substitute-keyword-arguments arguments
790 ((#:configure-flags configure-flags) 789 ((#:configure-flags configure-flags)
@@ -962,7 +961,7 @@ source files.")
962 brotli 961 brotli
963 icu4c-76 962 icu4c-76
964 libuv-for-node-lts 963 libuv-for-node-lts
965 `(,nghttp2 "lib") 964 `(,nghttp2-for-node-lts "lib")
966 openssl 965 openssl
967 zlib 966 zlib
968 ; ngtcp2? nghttp3? 967 ; ngtcp2? nghttp3?
@@ -983,7 +982,7 @@ source files.")
983 brotli 982 brotli
984 ngtcp2 983 ngtcp2
985 nghttp3 984 nghttp3
986 `(,nghttp2 "lib") 985 `(,nghttp2-for-node-lts "lib")
987 openssl 986 openssl
988 zlib 987 zlib
989 `(,zstd-1.5.7 "lib"))) 988 `(,zstd-1.5.7 "lib")))