diff options
author | Isaac van Bakel <isaac.vanbakel@inf.ethz.ch> | 2024-10-28 12:31:12 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2024-11-03 13:05:26 +0100 |
commit | bb03bb5dbaf911fccc99ebeb047c92039bcc2d39 (patch) | |
tree | 3e1dcf9e06e5ce646a3323887b0782bb7dfbaf0a /nongnu/packages/editors.scm | |
parent | aa1bfa802fa5905340ac1521dd893044175c2535 (diff) |
nongnu: vscodium: Fix baked-in source in unpack overrides.
* nongnu/packages/editors.scm (vscodium)[#:phases]<unpack>: Replace source
G-expression by keyword argument source.
Signed-off-by: Jelle Licht <jlicht@fsfe.org>
Diffstat (limited to 'nongnu/packages/editors.scm')
-rw-r--r-- | nongnu/packages/editors.scm | 4 |
1 files changed, 2 insertions, 2 deletions
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"))) |