diff options
author | Christopher Baines <mail@cbaines.net> | 2020-12-17 11:42:42 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2021-01-03 18:10:50 +0000 |
commit | 7323316609b4b34c7c643814f5f34362b5881edd (patch) | |
tree | 208896f42ec152c84bc5496e962fa3c6435afaa4 /gnu/packages | |
parent | c1d165ec79dcd4df03a097010e2b8cef19f4ce40 (diff) | |
download | guix-7323316609b4b34c7c643814f5f34362b5881edd.tar.gz guix-7323316609b4b34c7c643814f5f34362b5881edd.zip |
gnu: perl-lwp-protocol-https: Uncomment perl-mozilla-ca input.
If there's no explicit SSL configuration, the perl-mozilla-ca library acts as
a fallback. Including this as an input fixes the use of HTTPS in things that
use perl-lwp-protocol-https, for example get-iplayer.
* gnu/packages/web.scm (perl-lwp-protocol-https)[propagated-inputs]: Uncomment
perl-mozilla-ca.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/web.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 50b6c32663..686790f177 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -3876,8 +3876,7 @@ exists it is used instead.") (propagated-inputs `(("perl-io-socket-ssl" ,perl-io-socket-ssl) ("perl-libwww" ,perl-libwww) - ;; Users should instead make sure SSL_ca_path is set properly. - ;; ("perl-mozilla-ca" ,perl-mozilla-ca) + ("perl-mozilla-ca" ,perl-mozilla-ca) ("perl-net-http" ,perl-net-http))) (home-page "https://metacpan.org/release/LWP-Protocol-https") (synopsis "HTTPS support for LWP::UserAgent") |