diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-11-23 22:01:01 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-11-27 09:48:40 +0100 |
commit | 9413e95f598dfb2792249fc79542fb4d55d9a209 (patch) | |
tree | 06736351f72e6bf99f5c6aed38ea788d18257912 /gnu/packages/perl.scm | |
parent | adbf4b944c8c67d9819bb9b4c95c83cd29a6659f (diff) | |
download | guix-9413e95f598dfb2792249fc79542fb4d55d9a209.tar guix-9413e95f598dfb2792249fc79542fb4d55d9a209.tar.gz |
gnu: Add perl-data-compare.
* gnu/packages/perl.scm (perl-data-compare): 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 e23e8285ff..8bac955579 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -1310,6 +1310,27 @@ functions and data structures for processing and analysing genomic and bioinformatics data.") (license gpl3+))) +(define-public perl-data-compare + (package + (name "perl-data-compare") + (version "1.25") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/" + "Data-Compare-" version ".tar.gz")) + (sha256 + (base32 + "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx")))) + (build-system perl-build-system) + (propagated-inputs + `(("perl-file-find-rule" ,perl-file-find-rule))) + (home-page "http://search.cpan.org/dist/Data-Compare") + (synopsis "Compare Perl data structures") + (description "This module compares arbitrary data structures to see if +they are copies of each other.") + (license (package-license perl)))) + (define-public perl-data-dump (package (name "perl-data-dump") |