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:
Isaac van Bakel 2024-10-28 12:28:43 +01:00 committed by Jelle Licht
parent 9734a6a1fe
commit aa1bfa802f
No known key found for this signature in database
GPG key ID: DA4597F947B41025

View file

@ -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")))