;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2013 Andreas Enge ;;; Copyright © 2014, 2015 Mark H Weaver ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages zip) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (gnu packages) #:use-module (gnu
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Petkov <ivanppetkov@gmail.com>2019-06-30 07:18:20 -0700
committerIvan Petkov <ivanppetkov@gmail.com>2019-06-30 09:01:27 -0700
commit022288ba53bd44c9311c6cffef5e8224a2e74598 (patch)
tree913b76c24017fec9968a9a3bf2d4162b6c157459 /nix/libstore/pathlocks.hh
parent5dd0269244da42066133d19055c9eb82b9e9ae20 (diff)
downloadguix-022288ba53bd44c9311c6cffef5e8224a2e74598.tar.gz
guix-022288ba53bd44c9311c6cffef5e8224a2e74598.zip
guix: import: crate: fix redundant inputs list nesting
* guix/import/crate.scm (maybe-cargo-inputs): Remove one level of lists. * guix/import/crate.scm (maybe-cargo-development-inputs): Same. * tests/crate.scm: (crate->guix-package)[package]<#:arguments>: Remove one level of list nesting.
Diffstat (limited to 'nix/libstore/pathlocks.hh')
0 files changed, 0 insertions, 0 deletions
; http://forums.gentoo.org/viewtopic-t-863161-start-0.html ("zip" ,zip))) ; to create test files (arguments `(#:parallel-tests? #f)) ; since test files are created on the fly (home-page "http://zziplib.sourceforge.net/") (synopsis "Library for accessing zip files") (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.59") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-" version ".tar.gz")) (sha256 (base32 "0m31qlppg65vh32pwxkwjby02q70abx49d2yk6vfd4585fqb27cx")))) (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))))