gnu: Add libuv-for-r-httpuv.
* gnu/packages/libevent.scm (libuv-for-r-httpuv): New variable.master
parent
e72d0d9208
commit
ef86b0b12e
|
@ -8,6 +8,7 @@
|
||||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
;;; Copyright © 2019 Pierre Neidhardt <mail@ambrevar.xyz>
|
||||||
;;; Copyright © 2022 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
|
;;; Copyright © 2022 Luis Henrique Gomes Higino <luishenriquegh2701@gmail.com>
|
||||||
|
;;; Copyright © 2023 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -157,6 +158,21 @@ resolution, asynchronous file system operations, and threading primitives.")
|
||||||
"0wpb9pz3r8nksnrf4zbixj2kk9whr7abi45ydrwyv2js2ljrc4j3"))))
|
"0wpb9pz3r8nksnrf4zbixj2kk9whr7abi45ydrwyv2js2ljrc4j3"))))
|
||||||
(properties '((hidden? . #t)))))
|
(properties '((hidden? . #t)))))
|
||||||
|
|
||||||
|
(define-public libuv-for-r-httpuv
|
||||||
|
;; When upgrading r-httpuv, also upgrade this.
|
||||||
|
(package
|
||||||
|
(inherit libuv)
|
||||||
|
(name "libuv")
|
||||||
|
(version "1.43.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://dist.libuv.org/dist/v" version
|
||||||
|
"/libuv-v" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"194kwq3jfj9s628kzkchdca534rikjw0xiyas0cjbphqmsvjpmwh"))))
|
||||||
|
(properties '((hidden? . #t)))))
|
||||||
|
|
||||||
(define-public libuv-julia
|
(define-public libuv-julia
|
||||||
(let ((commit "e6f0e4900e195c8352f821abe2b3cffc3089547b")
|
(let ((commit "e6f0e4900e195c8352f821abe2b3cffc3089547b")
|
||||||
(revision "4"))
|
(revision "4"))
|
||||||
|
|
Reference in New Issue