gnu: libuv: Update to 1.41.0.

* gnu/packages/libevent.scm (libuv): Update to 1.41.0.
[native-inputs]: Change from AUTOCONF-WRAPPER to AUTOCONF.
This commit is contained in:
Marius Bakke 2021-05-16 11:50:25 +02:00
parent 46f2d25b09
commit 4119775de1
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA

View File

@ -103,21 +103,20 @@ limited support for fork events.")
(define-public libuv (define-public libuv
(package (package
(name "libuv") (name "libuv")
(version "1.38.1") (version "1.41.0")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://dist.libuv.org/dist/v" version (uri (string-append "https://dist.libuv.org/dist/v" version
"/libuv-v" version ".tar.gz")) "/libuv-v" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0iy6yp9nrxpj643w7la3kl3j59ni59b0l4v6n23a63s8kqkpvkhf")))) "0vpbssrbkxzz0gizxxvz5262h9gyn2msac6d1nfavpg10wwm710i"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
'(#:configure-flags '("--disable-static") '(#:configure-flags '("--disable-static")
;; XXX: Some tests want /dev/tty, attempt to make connections, etc. ;; XXX: Some tests want /dev/tty, attempt to make connections, etc.
#:tests? #f)) #:tests? #f))
;; TODO replace with autoconf on core-updates (native-inputs `(("autoconf" ,autoconf)
(native-inputs `(("autoconf" ,autoconf-wrapper)
("automake" ,automake) ("automake" ,automake)
("libtool" ,libtool) ("libtool" ,libtool)