Skip to content
Snippets Groups Projects
Commit fddbf35b authored by John Darrington's avatar John Darrington
Browse files

gnu: Add perl-zip.

* gnu/packages/zip.scm (perl-zip): New variable.
parent d8b85b7d
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ (define-module (gnu packages zip)
#:use-module (guix build-system gnu)
#:use-module (gnu packages compression)
#:use-module (gnu packages perl)
#:use-module (guix build-system perl)
#:use-module (gnu packages pkg-config)
#:use-module (gnu packages python))
......@@ -134,3 +135,24 @@ (define-public zziplib
(description
"zziplib is a library based on zlib for accessing zip files.")
(license license:lgpl2.0+)))
(define-public perl-zip
(package
(name "perl-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 "Provides an interface to ZIP archive 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/~adamk/Archive-Zip-1.30/")
(license (package-license perl))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment