From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Darrington Subject: [PATCH] gnu: Add perl-zip. Date: Fri, 10 Oct 2014 05:54:21 +0200 Message-ID: <1412913261-6501-1-git-send-email-jmd@gnu.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37764) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XcRHk-0004mH-RN for guix-devel@gnu.org; Thu, 09 Oct 2014 23:54:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XcRHf-0004Xm-PE for guix-devel@gnu.org; Thu, 09 Oct 2014 23:54:32 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: John Darrington * gnu/packages/zip.scm (perl-zip): New variable. --- gnu/packages/zip.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/zip.scm b/gnu/packages/zip.scm index 13dc62c..7fce124 100644 --- a/gnu/packages/zip.scm +++ b/gnu/packages/zip.scm @@ -24,6 +24,7 @@ #: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 @@ UnZip recreates the stored directory structure by default.") (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 "") + (description + "This modugiven at XML::Parser creation time.") + (home-page "http://search.cpan.org/~toddr/XML-Parser-2.41/Parser.pm") + (license (package-license perl)))) -- 1.7.10.4