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
|
@ -44,9 +44,9 @@
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(replace 'unpack
|
(replace 'unpack
|
||||||
(lambda _
|
(lambda* (#:key source #:allow-other-keys)
|
||||||
(mkdir-p "opt/vscodium")
|
(mkdir-p "opt/vscodium")
|
||||||
(invoke "tar" "-xvf" #$source "-C" "opt/vscodium")))
|
(invoke "tar" "-xvf" source "-C" "opt/vscodium")))
|
||||||
(add-before 'install-wrapper 'install-entrypoint
|
(add-before 'install-wrapper 'install-entrypoint
|
||||||
(lambda _
|
(lambda _
|
||||||
(let* ((bin (string-append #$output "/bin")))
|
(let* ((bin (string-append #$output "/bin")))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user