mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
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>
This commit is contained in:
parent
9734a6a1fe
commit
aa1bfa802f
1 changed files with 2 additions and 2 deletions
|
@ -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")))
|
||||
|
|
Loading…
Reference in a new issue