diff options
author | John Darrington <jmd@gnu.org> | 2014-08-28 18:20:13 +0200 |
---|---|---|
committer | John Darrington <jmd@gnu.org> | 2014-08-28 18:56:16 +0200 |
commit | ba5324c30e4102b34c8859e2e013392455273562 (patch) | |
tree | 10df1b8859dbc9fe9ac7357fc5c3963f06f72abe /gnu | |
parent | b1da9f82a8100e2033fd95ed9e4138bda9c271f2 (diff) | |
download | patches-ba5324c30e4102b34c8859e2e013392455273562.tar patches-ba5324c30e4102b34c8859e2e013392455273562.tar.gz |
gnu: Add perl-archive-zip.
* gnu/packages/perl.scm (perl-archive-zip): New variable.
Diffstat (limited to 'gnu')
-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 48b543436e..164f6bd099 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -121,3 +121,23 @@ matching a regular expression.") "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to pseudo ttys.") (license (package-license perl)))) + +(define-public perl-archive-zip + (package + (name "perl-archive-zip") + (version "1.30") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-" + version ".tar.gz")) + (sha256 + (base32 + "0633zah5z9njiqnvy3vh42fjymncmil1jdfb7d18w8xpfzzp5d7q")))) + (build-system perl-build-system) + (synopsis "Perl API to zip files") + (description "The Archive::Zip module allows a Perl program to create, +manipulate, read, and write Zip archive files.") + (home-page "http://search.cpan.org/~phred/Archive-Zip-1.37/lib/Archive/Zip.pm") + (license (package-license perl)))) |