diff options
author | Jelle Licht <[email protected]> | 2025-01-05 18:57:20 +0100 |
---|---|---|
committer | Jelle Licht <[email protected]> | 2025-02-11 14:02:51 +0100 |
commit | 0a5d8258766690fab7ddd2800ddb34fc8b6549d0 (patch) | |
tree | 03f67fa04dfac65e4e2a86d89e63722e753e2e8f /gnu/packages | |
parent | e59a6253881f8b13173cc6911e4932ea75c6a15b (diff) |
gnu: libuv-for-node-lts: Update to 1.49.1.
* gnu/packages/libevent.scm (libuv-for-node-lts): Update to 1.49.1.
Change-Id: I8acf2fb174fffa90f7c3271088d0476c682df904
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/libevent.scm | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm index 202deaea47..40de182ff8 100644 --- a/gnu/packages/libevent.scm +++ b/gnu/packages/libevent.scm @@ -164,22 +164,14 @@ resolution, asynchronous file system operations, and threading primitives.") (package (inherit libuv) (name "libuv") - (version "1.46.0") + (version "1.49.1") (source (origin (method url-fetch) (uri (string-append "https://dist.libuv.org/dist/v" version "/libuv-v" version ".tar.gz")) (sha256 (base32 - "1knxvp6bl3y0c87cch1id0z7m7rb6igx55ci93qnbp4zifaq67qi")) - (modules '((guix build utils))) - (snippet - '(begin - ;; Disable io_uring by default due to CVE-2024-22017. Can be removed once - ;; https://github.com/libuv/libuv/issues/4468 is released and compatible - ;; with Node.js - (substitute* "src/unix/linux.c" - (("val == NULL \\|\\|") "val != NULL &&")))))) + "0rk73b373zb495jd0qsl2gpnc8fc60jbhn3aayqnglfgyhagg14d")))) (properties '((hidden? . #t))))) (define-public libuv-for-r-httpuv |