diff options
author | Eric Bavier <bavier@member.fsf.org> | 2015-04-08 16:07:27 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2015-04-19 19:48:52 -0500 |
commit | f21671f46950207d77a48ec0bd760a3161c15c03 (patch) | |
tree | 9f2154769797a3f59e4146dcf82649e22eb14e73 /gnu/packages/perl.scm | |
parent | b4dcb026d6e4def401d71f39b5e219130f521967 (diff) | |
download | patches-f21671f46950207d77a48ec0bd760a3161c15c03.tar patches-f21671f46950207d77a48ec0bd760a3161c15c03.tar.gz |
gnu: Add Set-Scalar.
* gnu/packages/perl.scm (perl-set-scalar): New variable.
Diffstat (limited to 'gnu/packages/perl.scm')
-rw-r--r-- | gnu/packages/perl.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index afa2ba50aa..90b867a535 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -4021,6 +4021,27 @@ collector.") (description "Set::Infinite is a set theory module for infinite sets.") (license (package-license perl)))) +(define-public perl-set-scalar + (package + (name "perl-set-scalar") + (version "1.29") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/" + "Set-Scalar-" version ".tar.gz")) + (sha256 + (base32 + "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Set-Scalar") + (synopsis "Set operations for Perl") + (description "The first priority of Set::Scalar is to be a convenient +interface to sets (as in: unordered colletions of Perl scalars.) While not +designed to be slow or big, neither has it been designed to be fast or +compact.") + (license (package-license perl)))) + (define-public perl-spiffy (package (name "perl-spiffy") |