diff options
author | Leo Famulari <leo@famulari.name> | 2017-11-29 12:45:12 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-11-29 14:38:51 -0500 |
commit | e6e83523824fb9a9f2ff8af5ae5c99323f126cfe (patch) | |
tree | dce4e05e1dc0e0b605e8706dcff218727d668145 | |
parent | 2c646b7d52e9dcff9c6adc0d37148d20db017610 (diff) | |
download | patches-e6e83523824fb9a9f2ff8af5ae5c99323f126cfe.tar patches-e6e83523824fb9a9f2ff8af5ae5c99323f126cfe.tar.gz |
gnu: curl: Update to 7.57.0 [fixes CVE-2017-{8816,8817,8818}].
* gnu/packages/curl.scm (curl): Update replacement to 7.57.0.
(curl-7.56.1): Replace with ...
(curl-7.57.0): ... new variable.
-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 2e4a48d1ef..49703c0925 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -43,7 +43,7 @@ (package (name "curl") (version "7.55.1") - (replacement curl-7.56.1) + (replacement curl-7.57.0) (source (origin (method url-fetch) (uri (string-append "https://curl.haxx.se/download/curl-" @@ -123,10 +123,10 @@ tunneling, and so on.") "See COPYING in the distribution.")) (home-page "https://curl.haxx.se/"))) -(define-public curl-7.56.1 +(define-public curl-7.57.0 (package (inherit curl) - (version "7.56.1") + (version "7.57.0") (source (origin (method url-fetch) @@ -134,4 +134,4 @@ tunneling, and so on.") version ".tar.xz")) (sha256 (base32 - "1l9r386qz7l7h4n5lysrf1wq93lyc72a7shgg9b8s5d0ycn2ivcf")))))) + "0y3qbjjcxhcvm1yawp3spfssjbskv0g6gyzld6ckif5pf8ygvxpm")))))) |