diff options
author | Danny Milosavljevic <danny.milo@datacom.wien> | 2021-03-17 01:56:38 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-22 14:04:27 +0200 |
commit | d11574736207c69e40a5ee422e7b0465629a37cd (patch) | |
tree | 15339f52143cca8835aed5de1fbf9b7859b850ec | |
parent | 1010171280cb34c8dc361644b66fdd1a041d297a (diff) | |
download | guix-d11574736207c69e40a5ee422e7b0465629a37cd.tar.gz guix-d11574736207c69e40a5ee422e7b0465629a37cd.zip |
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>
-rw-r--r-- | guix/packages.scm | 2 |
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 |