diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-16 19:05:39 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-07-16 20:12:06 +0200 |
commit | 69cfb72b38d82383b9c1b2f24261833a4e8a8615 (patch) | |
tree | 284e235347232721cf220bba703d0317a0c56d6f /gnu | |
parent | fe39c701952733cf19650898feaa78ad4337a599 (diff) |
gnu: libyaml: Use HTTPS.
* gnu/packages/web.scm (libyaml)[source, home-page]: Use HTTPS.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index c0a3134a89..47162c49de 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -1492,14 +1492,12 @@ hash/signatures.") (source (origin (method url-fetch) - (uri (string-append - "http://pyyaml.org/download/libyaml/yaml-" - version ".tar.gz")) + (uri (string-append "https://pyyaml.org/download/libyaml/yaml-" + version ".tar.gz")) (sha256 - (base32 - "0mq5wf17ifcwwxq3kbimhi53jn3fg23vcynqpzxjcz3vfjlfs2nq")))) + (base32 "0mq5wf17ifcwwxq3kbimhi53jn3fg23vcynqpzxjcz3vfjlfs2nq")))) (build-system gnu-build-system) - (home-page "http://pyyaml.org/wiki/LibYAML") + (home-page "https://pyyaml.org/wiki/LibYAML") (synopsis "YAML 1.1 parser and emitter written in C") (description "LibYAML is a YAML 1.1 parser and emitter written in C.") |