diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-09-09 17:55:33 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-09-09 17:55:33 +0200 |
commit | 16676fc3b1736781d085b0c047dbb6ae296ac4f1 (patch) | |
tree | 031f42b91e8a133440cd87adab17466f2dcf71f1 /gnu/packages/curl.scm | |
parent | 842c44c9746f2acb132aab276338b1fac2143364 (diff) | |
download | patches-16676fc3b1736781d085b0c047dbb6ae296ac4f1.tar patches-16676fc3b1736781d085b0c047dbb6ae296ac4f1.tar.gz |
gnu: curl: Remove graft for 7.61.1.
* gnu/packages/curl.scm (curl): Update to 7.61.1.
(curl-7.61.1): Remove variable.
Diffstat (limited to 'gnu/packages/curl.scm')
-rw-r--r-- | gnu/packages/curl.scm | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index d4a620f1b3..b09afe328e 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -50,15 +50,14 @@ (define-public curl (package (name "curl") - (version "7.61.0") - (replacement curl-7.61.1) + (version "7.61.1") (source (origin (method url-fetch) (uri (string-append "https://curl.haxx.se/download/curl-" version ".tar.xz")) (sha256 (base32 - "080p9r2kln8cbfj0rqfn6wqp5kdn9k5wp720nirkcw845lcmavpg")))) + "148qv1f32290r9pwg07mccawihz4srznkzsdwdl2xllvlgb16n9x")))) (build-system gnu-build-system) (outputs '("out" "doc")) ;1.2 MiB of man3 pages @@ -142,19 +141,6 @@ tunneling, and so on.") "See COPYING in the distribution.")) (home-page "https://curl.haxx.se/"))) -(define-public curl-7.61.1 - (package - (inherit curl) - (version "7.61.1") - (source - (origin - (method url-fetch) - (uri (string-append "https://curl.haxx.se/download/curl-" - version ".tar.xz")) - (sha256 - (base32 - "148qv1f32290r9pwg07mccawihz4srznkzsdwdl2xllvlgb16n9x")))))) - (define-public kurly (package (name "kurly") |