diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-11-23 16:04:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-11-27 09:48:39 +0100 |
commit | a3f5beb7a238e0cb2c60686f6c861d5e41bc4082 (patch) | |
tree | a24ef41141dabb6d6f773db2f61dcfcfc85769b4 | |
parent | 3f1df54cc059abc326c6691ea305f6676bc89c8a (diff) | |
download | guix-a3f5beb7a238e0cb2c60686f6c861d5e41bc4082.tar guix-a3f5beb7a238e0cb2c60686f6c861d5e41bc4082.tar.gz |
gnu: Add perl-business-isbn-data.
* gnu/packages/perl.scm (perl-business-isbn-data): New variable.
-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 92d973b7b1..733b86536c 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -407,6 +407,26 @@ library can nevertheless be used stand-alone, without Perl.") special objects: true and false.") (license (package-license perl)))) +(define-public perl-business-isbn-data + (package + (name "perl-business-isbn-data") + (version "20140910.003") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/" + "Business-ISBN-Data-" version ".tar.gz")) + (sha256 + (base32 + "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Business-ISBN-Data") + (synopsis "Data files for Business::ISBN") + (description "This package provides a data pack for @code{Business::ISBN}. +These data are generated from the RangeMessage.xml file provided by the ISBN +Agency.") + (license (package-license perl)))) + (define-public perl-cache-cache (package (name "perl-cache-cache") |