diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-21 14:56:34 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2016-12-21 14:56:34 +0100 |
commit | 42366b35c3f9f8dc8b059d3369b8196a4b832c18 (patch) | |
tree | f0b0e238b4bf47aaed62cb493a2993bad270149a /gnu/packages/curl.scm | |
parent | 6a148b9db55e2fae2a7d8d2c938f789a5039bf8b (diff) | |
download | patches-42366b35c3f9f8dc8b059d3369b8196a4b832c18.tar patches-42366b35c3f9f8dc8b059d3369b8196a4b832c18.tar.gz |
gnu: curl: Update replacement to 7.52.0 [fixes CVE-2016-{9586,9952,9953}].
* gnu/packages/curl.scm (curl)[replacement]: Update to 7.52.0.
(curl-7.51.0): Replace with ...
(curl-7.52.0): ... this.
Diffstat (limited to 'gnu/packages/curl.scm')
-rw-r--r-- | gnu/packages/curl.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index 790f542a52..3e32a5905a 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -40,7 +40,7 @@ (define-public curl (package (name "curl") - (replacement curl-7.51.0) + (replacement curl-7.52.0) (version "7.50.3") (source (origin (method url-fetch) @@ -121,15 +121,15 @@ tunneling, and so on.") "See COPYING in the distribution.")) (home-page "http://curl.haxx.se/"))) -(define curl-7.51.0 +(define curl-7.52.0 (package (inherit curl) (source - (let ((version "7.51.0")) + (let ((version "7.52.0")) (origin (method url-fetch) (uri (string-append "https://curl.haxx.se/download/curl-" version ".tar.lzma")) (sha256 (base32 - "0605f28m2kxjcxrcfcv1ja353gv167lwyxjc3xizqbwppdmmzvwy"))))))) + "1hh9w3dwc84c84y15pwc415jfqfhjdjk45k4f5yn5j3jgi613w68"))))))) |