diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-10-06 15:25:13 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-10-06 16:20:40 +0200 |
commit | 7721dbf98330ee5ffcdf8625a8c42132532f4025 (patch) | |
tree | da019df56a1975ee62400fa8744f41a75662f25f /gnu/packages/perl.scm | |
parent | 387ad8fd83dfd07575545446f27f419710dd2462 (diff) | |
download | guix-7721dbf98330ee5ffcdf8625a8c42132532f4025.tar.gz |
gnu: perl-digest-md5: Update to 2.58.
* gnu/packages/perl.scm (perl-digest-md5): Update to 2.58. [arguments]: Remove field.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index e093a63770..dd201d86ad 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -3812,24 +3812,15 @@ of the input. MD4 is described in RFC 1320.") (define-public perl-digest-md5 (package (name "perl-digest-md5") - (version "2.55") + (version "2.58") (source (origin (method url-fetch) - (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-" + (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/Digest-MD5-" version ".tar.gz")) (sha256 - (base32 - "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83")))) + (base32 "057psy6k7im0pr3344ny6k5rsnbqj8aizkmwgw53kbbngabh20kx")))) (build-system perl-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'build 'set-permissions - (lambda _ - ;; Make MD5.so read-write so it can be stripped. - (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755) - #t))))) (home-page "https://metacpan.org/release/Digest-MD5") (synopsis "Perl interface to the MD-5 algorithm") (description |