summaryrefslogtreecommitdiff
path: root/guix/packages.scm
diff options
context:
space:
mode:
authorDanny Milosavljevic <danny.milo@datacom.wien>2021-03-17 01:56:38 +0100
committerLudovic Courtès <ludo@gnu.org>2021-04-22 14:04:27 +0200
commitd11574736207c69e40a5ee422e7b0465629a37cd (patch)
tree15339f52143cca8835aed5de1fbf9b7859b850ec /guix/packages.scm
parent1010171280cb34c8dc361644b66fdd1a041d297a (diff)
downloadguix-patches-d11574736207c69e40a5ee422e7b0465629a37cd.tar
guix-patches-d11574736207c69e40a5ee422e7b0465629a37cd.tar.gz
packages: Fix patch-and-repack for ZIP files.
* guix/packages.scm (patch-and-repack): Fix for ZIP files. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/packages.scm')
-rw-r--r--guix/packages.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/packages.scm b/guix/packages.scm
index 61238a8118..3ae205b22a 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -751,7 +751,7 @@ specifies modules in scope when evaluating SNIPPET."
((and=> (compressor #+source) (cut string= "unzip" <>))
;; Note: Referring to the store unzip here (#+unzip)
;; would introduce a cycle.
- ("unzip" (invoke "unzip" #+source)))
+ (invoke "unzip" #+source))
(else
(copy-file #+source name)
(when command