diff options
author | Marius Bakke <[email protected]> | 2019-10-13 20:51:17 +0200 |
---|---|---|
committer | Marius Bakke <[email protected]> | 2019-10-13 22:49:16 +0200 |
commit | 046915dead530a0a7918063739e8ac0de5cd5890 (patch) | |
tree | c578a6f1e65b94a0c26dbe7f8b75aa8d2971eb4b | |
parent | cb867883ea5cfc56dd7fe5bc6c29fda491d374c2 (diff) |
gnu: curl: Replace with 7.66.0 [fixes CVE-2019-5481, CVE-2019-5482].
* gnu/packages/curl.scm (curl-7.66.0): New variable.
(curl)[replacement]: New field.
-rw-r--r-- | gnu/packages/curl.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index 5e1e7eb400..aa5d24c401 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2015 Tomáš Čech <[email protected]> ;;; Copyright © 2015 Ludovic Courtès <[email protected]> ;;; Copyright © 2016, 2017, 2019 Leo Famulari <[email protected]> -;;; Copyright © 2017 Marius Bakke <[email protected]> +;;; Copyright © 2017, 2019 Marius Bakke <[email protected]> ;;; Copyright © 2017 Efraim Flashner <[email protected]> ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <[email protected]> ;;; Copyright © 2018 Roel Janssen <[email protected]> @@ -51,6 +51,7 @@ (package (name "curl") (version "7.65.3") + (replacement curl-7.66.0) (source (origin (method url-fetch) (uri (string-append "https://curl.haxx.se/download/curl-" @@ -142,6 +143,18 @@ tunneling, and so on.") "See COPYING in the distribution.")) (home-page "https://curl.haxx.se/"))) +(define curl-7.66.0 + (package + (inherit curl) + (version "7.66.0") + (source (origin + (method url-fetch) + (uri (string-append "https://curl.haxx.se/download/curl-" + version ".tar.xz")) + (sha256 + (base32 + "1hcqxpibhknhjy56wcxz5vd6m9ggx3ykwp3wp5wx05ih36481d6v")))))) + (define-public kurly (package (name "kurly") |