From aa1bfa802fa5905340ac1521dd893044175c2535 Mon Sep 17 00:00:00 2001 From: Isaac van Bakel Date: Mon, 28 Oct 2024 12:28:43 +0100 Subject: nongnu: zoom: Fix baked-in source in unpack overrides. * nongnu/packages/messaging.scm (zoom)[#:phases]: Replace #$source by keyword argument source. Signed-off-by: Jelle Licht --- nongnu/packages/messaging.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nongnu') 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"))) -- cgit v1.2.3