guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#47203] [PATCH] packages: Fix patch-and-repack for ZIP files.


From: Danny Milosavljevic
Subject: [bug#47203] [PATCH] packages: Fix patch-and-repack for ZIP files.
Date: Wed, 17 Mar 2021 01:56:38 +0100

* guix/packages.scm (patch-and-repack): Fix for ZIP files.
---
 guix/packages.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index dd1d473fca..2e4270645b 100644
--- a/guix/packages.scm
+++ b/guix/packages.scm
@@ -744,7 +744,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
-- 
2.29.2






reply via email to

[Prev in Thread] Current Thread [Next in Thread]