diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-09 16:12:21 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-08-09 19:41:24 +0200 |
commit | 4edc6bbdc999a11c7afb1a94850c44769e69043c (patch) | |
tree | cd8adc2467c3cb11b28b665383e44721fb6531af /gnu/packages | |
parent | 4cafdce2102e3ebc7b3a6152464a62a454b6be45 (diff) | |
download | guix-4edc6bbdc999a11c7afb1a94850c44769e69043c.tar.gz guix-4edc6bbdc999a11c7afb1a94850c44769e69043c.zip |
gnu: freexl: Download over HTTPS.
* gnu/packages/xml.scm (freexl)[source]: Use HTTPS. Hard-code NAME.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/xml.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index a7a8f029b8..b141e7d5dc 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@ -1347,8 +1347,8 @@ files. It is designed to be fast and to handle large input files.") (version "1.0.5") (source (origin (method url-fetch) - (uri (string-append "http://www.gaia-gis.it/gaia-sins/" - name "-" version ".tar.gz")) + (uri (string-append "https://www.gaia-gis.it/gaia-sins/" + "freexl-" version ".tar.gz")) (sha256 (base32 "03bmwq6hngmzwpqpb7c2amqlspz4q69iv96nlf0f5c0qs98b3j9x")))) |