1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

Merge branch 'master' into core-updates

This commit is contained in:
Mark H Weaver 2018-05-21 13:41:18 -04:00
commit ab9da9ec66
No known key found for this signature in database
GPG key ID: 7CEF29847562C516
4 changed files with 56 additions and 13 deletions

View file

@ -51,6 +51,7 @@
(package
(name "curl")
(version "7.59.0")
(replacement curl-7.60.0)
(source (origin
(method url-fetch)
(uri (string-append "https://curl.haxx.se/download/curl-"
@ -140,6 +141,19 @@ tunneling, and so on.")
"See COPYING in the distribution."))
(home-page "https://curl.haxx.se/")))
(define-public curl-7.60.0
(package
(inherit curl)
(version "7.60.0")
(source
(origin
(method url-fetch)
(uri (string-append "https://curl.haxx.se/download/curl-"
version ".tar.xz"))
(sha256
(base32
"1876ck0smbqz3xakm7s6q6gh4zarh9pv3izf4vlzgpc9xn6zydl7"))))))
(define-public kurly
(package
(name "kurly")