From bb03bb5dbaf911fccc99ebeb047c92039bcc2d39 Mon Sep 17 00:00:00 2001 From: Isaac van Bakel Date: Mon, 28 Oct 2024 12:31:12 +0100 Subject: nongnu: vscodium: Fix baked-in source in unpack overrides. * nongnu/packages/editors.scm (vscodium)[#:phases]: Replace source G-expression by keyword argument source. Signed-off-by: Jelle Licht --- nongnu/packages/editors.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nongnu/packages/editors.scm') diff --git a/nongnu/packages/editors.scm b/nongnu/packages/editors.scm index d96269f..4d19646 100644 --- a/nongnu/packages/editors.scm +++ b/nongnu/packages/editors.scm @@ -44,9 +44,9 @@ #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ + (lambda* (#:key source #:allow-other-keys) (mkdir-p "opt/vscodium") - (invoke "tar" "-xvf" #$source "-C" "opt/vscodium"))) + (invoke "tar" "-xvf" source "-C" "opt/vscodium"))) (add-before 'install-wrapper 'install-entrypoint (lambda _ (let* ((bin (string-append #$output "/bin"))) -- cgit v1.2.3