gnu: curl: Replace with 7.50.1 [fixes CVE-2016-{3739,4802,5419,5420,5421].
* gnu/packages/curl.scm (curl)[replacement]: New field. (curl-7.50.1): New variable.
This commit is contained in:
parent
7ccb874a29
commit
e686e633ad
|
@ -40,6 +40,7 @@
|
||||||
(define-public curl
|
(define-public curl
|
||||||
(package
|
(package
|
||||||
(name "curl")
|
(name "curl")
|
||||||
|
(replacement curl-7.50.1)
|
||||||
(version "7.47.0")
|
(version "7.47.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -123,3 +124,16 @@ tunneling, and so on.")
|
||||||
(license (license:non-copyleft "file://COPYING"
|
(license (license:non-copyleft "file://COPYING"
|
||||||
"See COPYING in the distribution."))
|
"See COPYING in the distribution."))
|
||||||
(home-page "http://curl.haxx.se/")))
|
(home-page "http://curl.haxx.se/")))
|
||||||
|
|
||||||
|
(define curl-7.50.1
|
||||||
|
(package
|
||||||
|
(inherit curl)
|
||||||
|
(source
|
||||||
|
(let ((version "7.50.1"))
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://curl.haxx.se/download/curl-"
|
||||||
|
version ".tar.lzma"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0qc3qp3h18v24irzw7dgg1jf39v4hnz8irv83v9lbn9rxzrpdcdj")))))))
|
||||||
|
|
Loading…
Reference in New Issue