import: cpan: Add trailing "/" to CPAN-HOME.
Prevent regression after commit e4bc172730
.
* guix/import/cpan.scm (cpan-home): Add trailing "/".
This commit is contained in:
parent
adce670797
commit
73f33b9379
|
@ -115,7 +115,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 "http://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."
|
||||
|
|
Loading…
Reference in New Issue