diff options
author | Isaac van Bakel <isaac.vanbakel@inf.ethz.ch> | 2024-10-28 12:28:43 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2024-11-03 13:05:26 +0100 |
commit | aa1bfa802fa5905340ac1521dd893044175c2535 (patch) | |
tree | 6157616fc70c7fb274cb44c3a20703b676ee8f7c | |
parent | 9734a6a1feff94dc43baf4d1b82f59f9b7a20220 (diff) |
nongnu: zoom: Fix baked-in source in unpack overrides.
* nongnu/packages/messaging.scm (zoom)[#:phases]<unpack>: Replace #$source by
keyword argument source.
Signed-off-by: Jelle Licht <jlicht@fsfe.org>
-rw-r--r-- | nongnu/packages/messaging.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nongnu/packages/messaging.scm b/nongnu/packages/messaging.scm index d62666e..43f6178 100644 --- a/nongnu/packages/messaging.scm +++ b/nongnu/packages/messaging.scm @@ -204,8 +204,8 @@ or iOS.") #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ - (invoke "tar" "xvf" #$source) + (lambda* (#:key source #:allow-other-keys) + (invoke "tar" "xvf" source) ;; Use the more standard lib directory for everything. (mkdir-p "lib") (rename-file "zoom/" "lib/zoom"))) |