diff options
author | Christopher Baines <[email protected]> | 2024-04-09 16:44:22 +0100 |
---|---|---|
committer | Christopher Baines <[email protected]> | 2024-04-09 16:46:34 +0100 |
commit | 6cae1db889f62051580d5a365f62585412a53a8c (patch) | |
tree | 4d3db074d50ca3e2109cced17bec77f207a0c1fd /gnu/packages/perl.scm | |
parent | 410e699e0933653e69d03a4cdadf11854c6723f4 (diff) | |
parent | 35e1d9247e39f3c91512cf3d9ef1467962389e35 (diff) |
Merge remote-tracking branch 'savannah/master' into mesa-updates
Change-Id: Iad185e2ced97067b3dff8fd722435a6c5e2c00e5
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index eb2089790d..80b17098c7 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2015 Eric Dvorsak <[email protected]> ;;; Copyright © 2016, 2018 Mark H Weaver <[email protected]> ;;; Copyright © 2016 Jochem Raat <[email protected]> -;;; Copyright © 2016-2022 Efraim Flashner <[email protected]> +;;; Copyright © 2016-2022, 2024 Efraim Flashner <[email protected]> ;;; Copyright © 2016 Nikita <[email protected]> ;;; Copyright © 2016 Alex Sassmannshausen <[email protected]> ;;; Copyright © 2016, 2018, 2020, 2021 Roel Janssen <[email protected]> @@ -8079,16 +8079,31 @@ of data.") (define-public perl-mozilla-ca (package (name "perl-mozilla-ca") - (version "20200520") + (version "20240313") (source (origin (method url-fetch) - (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-" + (uri (string-append "mirror://cpan/authors/id/L/LW/LWP/Mozilla-CA-" version ".tar.gz")) (sha256 (base32 - "09n7hwrh63c5gqvygqvvgvklcbvsm7g0p4nmq0b4mwhb64101jmk")))) + "1rwq2qb8f101ihq5gmdmr9vsnx7ybnln85489y4k761hks9p6j32")) + (snippet + #~(begin (use-modules (guix build utils)) + (delete-file "lib/Mozilla/CA/cacert.pem") + (substitute* "lib/Mozilla/CA.pm" + (("my \\$file.*") "my $file = $ENV{SSL_CERT_FILE};\n") + (("return.*") + (string-append + "if (!File::Spec->file_name_is_absolute($file)) {\n" + " $file = \"/etc/ssl/certs/ca-certificates.crt\";\n" + " }\n" + " return $file;\n")) + (("provides a copy of.*") + "provides a link to the user's or the system's SSL\n")))))) (build-system perl-build-system) + (arguments + (list #:tests? #f)) ; Tests rely on embedded cacert.pem. (home-page "https://metacpan.org/release/Mozilla-CA") (synopsis "Mozilla's CA cert bundle in PEM format") (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of |