diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-11-23 22:01:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-11-27 09:48:40 +0100 |
commit | cc3dafbb022825669cdcf96d66d73e6fdfe41bbe (patch) | |
tree | d9f426dbe6062d776d457b38f089ecd6f81a1576 /gnu/packages/perl.scm | |
parent | 9413e95f598dfb2792249fc79542fb4d55d9a209 (diff) | |
download | guix-cc3dafbb022825669cdcf96d66d73e6fdfe41bbe.tar guix-cc3dafbb022825669cdcf96d66d73e6fdfe41bbe.tar.gz |
gnu: Add perl-data-uniqid.
* gnu/packages/perl.scm (perl-data-uniqid): New variable.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 8bac955579..b87e33937b 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -1331,6 +1331,26 @@ bioinformatics data.") they are copies of each other.") (license (package-license perl)))) +(define-public perl-data-uniqid + (package + (name "perl-data-uniqid") + (version "0.12") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-" + version ".tar.gz")) + (sha256 + (base32 + "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Data-Uniqid") + (synopsis "Perl extension for generating unique identifiers") + (description "@code{Data::Uniqid} provides three simple routines for +generating unique ids. These ids are coded with a Base62 systen to make them +short and handy (e.g. to use it as part of a URL).") + (license (package-license perl)))) + (define-public perl-data-dump (package (name "perl-data-dump") |