mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
nongnu: k9s: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (k9s)[#:phases]<unpack>: Replace #$source by keyword argument source. Signed-off-by: Jelle Licht <jlicht@fsfe.org>
This commit is contained in:
parent
bb03bb5dba
commit
d0e6e969ed
1 changed files with 2 additions and 2 deletions
|
@ -29,8 +29,8 @@
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(replace 'unpack
|
(replace 'unpack
|
||||||
(lambda _
|
(lambda* (#:key source #:allow-other-keys)
|
||||||
(invoke "tar" "-xvf" #$source))))))
|
(invoke "tar" "-xvf" source))))))
|
||||||
(home-page "https://k9scli.io")
|
(home-page "https://k9scli.io")
|
||||||
(supported-systems '("x86_64-linux"))
|
(supported-systems '("x86_64-linux"))
|
||||||
(synopsis "Kubernetes CLI To Manage Your Clusters In Style")
|
(synopsis "Kubernetes CLI To Manage Your Clusters In Style")
|
||||||
|
|
Loading…
Reference in a new issue