diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-04-04 23:32:29 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-04-19 19:48:47 -0500 |
commit | 19c0e5a72828bd7b638f12f68e98aa0cab2a3fec (patch) | |
tree | 26c71430a0ce03af2ae7514701fa9010f736373e | |
parent | ca8e61960af7725fc16258df2a5024830366e334 (diff) | |
download | patches-19c0e5a72828bd7b638f12f68e98aa0cab2a3fec.tar patches-19c0e5a72828bd7b638f12f68e98aa0cab2a3fec.tar.gz |
gnu: Add Crypt-RandPasswd.
* gnu/packages/perl.scm (perl-crypt-randpasswd): New variable.
-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 d3f30cc5ac..f212afeaf4 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -923,6 +923,30 @@ CPAN::Meta object are present.") versa.") (license (package-license perl)))) +(define-public perl-crypt-randpasswd + (package + (name "perl-crypt-randpasswd") + (version "0.06") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/" + "Crypt-RandPasswd-" version ".tar.gz")) + (sha256 + (base32 + "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Crypt-RandPasswd") + (synopsis "Random password generator") + (description "Crypt::RandPasswd provides three functions that can be used +to generate random passwords, constructed from words, letters, or characters. +This code is a Perl implementation of the Automated Password Generator +standard, like the program described in \"A Random Word Generator For +Pronounceable Passwords\". This code is a re-engineering of the program +contained in Appendix A of FIPS Publication 181, \"Standard for Automated +Password Generator\".") + (license (package-license perl)))) + (define-public perl-data-dump (package (name "perl-data-dump") |