guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/07: gnu: Add perl-crypt-passwdmd5.


From: guix-commits
Subject: 02/07: gnu: Add perl-crypt-passwdmd5.
Date: Tue, 14 Apr 2020 09:42:49 -0400 (EDT)

pgarlick pushed a commit to branch master
in repository guix.

commit 5b660f9f3214060a07de79a8e590ede29c9bdc64
Author: Paul Garlick <address@hidden>
AuthorDate: Wed Apr 8 16:13:10 2020 +0100

    gnu: Add perl-crypt-passwdmd5.
    
    * gnu/packages/perl.scm (perl-crypt-passwdmd5): New variable.
---
 gnu/packages/perl.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm
index f3912c2..7207e68 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]