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