From d11574736207c69e40a5ee422e7b0465629a37cd Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Wed, 17 Mar 2021 01:56:38 +0100 Subject: packages: Fix patch-and-repack for ZIP files. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * guix/packages.scm (patch-and-repack): Fix for ZIP files. Signed-off-by: Ludovic Courtès --- guix/packages.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'guix/packages.scm') 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 -- cgit v1.2.3