diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-10-30 13:28:10 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2017-10-30 17:20:42 +0100 |
commit | b5c7574b2f6fe7752b02eaaa8a745a35b3beb2a1 (patch) | |
tree | fd006fdb0d2a6505a68ad7f6308028b1ac22c5c7 /guix | |
parent | 2fb83ca6c513967b611ba242f8f70f04c7af31f0 (diff) |
Revert "import: cpan: Use HTTPS for home pages."
This reverts commit 29f7bf59d5d4d4b848eaedc6766bb4e02cae20d3: HTTPS support
at search.cpan.org is unreliable, at best. Don't rely on it.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/import/cpan.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/import/cpan.scm b/guix/import/cpan.scm index 792da0ab31..2ef02c43a4 100644 --- a/guix/import/cpan.scm +++ b/guix/import/cpan.scm @@ -116,7 +116,7 @@ or #f on failure. MODULE should be e.g. \"Test::Script\"" (json-fetch (string-append "https://fastapi.metacpan.org/v1/release/" name))) (define (cpan-home name) - (string-append "https://search.cpan.org/dist/" name "/")) + (string-append "http://search.cpan.org/dist/" name "/")) (define (cpan-source-url meta) "Return the download URL for a module's source tarball." |