mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 01:07:41 +01:00
gnu: curl: Update to 7.72.0.
* gnu/packages/curl.scm (curl): Update to 7.72.0. [native-inputs]: Add nghttp2.
This commit is contained in:
parent
9e4a193b09
commit
cde87f38cf
1 changed files with 4 additions and 3 deletions
|
@ -53,14 +53,14 @@ (define-module (gnu packages curl)
|
||||||
(define-public curl
|
(define-public curl
|
||||||
(package
|
(package
|
||||||
(name "curl")
|
(name "curl")
|
||||||
(version "7.71.1")
|
(version "7.72.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://curl.haxx.se/download/curl-"
|
(uri (string-append "https://curl.haxx.se/download/curl-"
|
||||||
version ".tar.xz"))
|
version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"13357690bgr533dd49k0blwvkwcscgxwwj6ssifb5gnd4zd3xy20"))
|
"04rpa53c6wycjrhldnm9kig1d7fc23k0m646vgh2wpyqqh40iv8d"))
|
||||||
(patches (search-patches "curl-use-ssl-cert-env.patch"))))
|
(patches (search-patches "curl-use-ssl-cert-env.patch"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(outputs '("out"
|
(outputs '("out"
|
||||||
|
@ -72,7 +72,8 @@ (define-public curl
|
||||||
("nghttp2" ,nghttp2 "lib")
|
("nghttp2" ,nghttp2 "lib")
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("perl" ,perl)
|
`(("nghttp2" ,nghttp2)
|
||||||
|
("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("python" ,python-wrapper)))
|
("python" ,python-wrapper)))
|
||||||
(native-search-paths
|
(native-search-paths
|
||||||
|
|
Loading…
Reference in a new issue