guix-commits
[Top][All Lists]
Advanced

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

02/07: packages: Fix patch-and-repack for ZIP files.


From: guix-commits
Subject: 02/07: packages: Fix patch-and-repack for ZIP files.
Date: Thu, 22 Apr 2021 08:05:00 -0400 (EDT)

civodul pushed a commit to branch core-updates
in repository guix.

commit d11574736207c69e40a5ee422e7b0465629a37cd
Author: Danny Milosavljevic <danny.milo@datacom.wien>
AuthorDate: Wed Mar 17 01:56:38 2021 +0100

    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>
---
 guix/packages.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/packages.scm b/guix/packages.scm
index 61238a8..3ae205b 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



reply via email to

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