diff options
author | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-04-08 16:13:10 +0100 |
---|---|---|
committer | Paul Garlick <pgarlick@tourbillion-technology.com> | 2020-04-14 14:41:35 +0100 |
commit | 5b660f9f3214060a07de79a8e590ede29c9bdc64 (patch) | |
tree | 686a44cf6d8e1b1a420e4c92f23536ba0637205f /gnu | |
parent | 61078f0f94fc3e3c6ab0a250049799adb08542c6 (diff) | |
download | guix-5b660f9f3214060a07de79a8e590ede29c9bdc64.tar.gz |
gnu: Add perl-crypt-passwdmd5.
* gnu/packages/perl.scm (perl-crypt-passwdmd5): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/perl.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index f3912c2775..7207e68996 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -1892,6 +1892,30 @@ also includes an implementation of @code{bcrypt}, the Unix crypt() password hashing algorithm based on Eksblowfish.") (license perl-license))) +(define-public perl-crypt-passwdmd5 + (package + (name "perl-crypt-passwdmd5") + (version "1.40") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-" + version ".tgz")) + (sha256 + (base32 + "0j0r74f18nk63phddzqbf7wqma2ci4p4bxvrwrxsy0aklbp6lzdp")))) + (build-system perl-build-system) + (native-inputs + `(("perl-module-build" ,perl-module-build))) + (home-page "https://metacpan.org/release/Crypt-PasswdMD5") + (synopsis "Interoperable MD5-based crypt() functions") + (description "@code{Crypt::PasswdMD5} provides various +crypt()-compatible interfaces to the MD5-based crypt() function found +in various *nixes. It is based on the implementation found on FreeBSD +2.2.[56]-RELEASE.") + (license perl-license))) + (define-public perl-crypt-randpasswd (package (name "perl-crypt-randpasswd") |