mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
nongnu: kubectl: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (kubectl)[#:phases]<unpack>: Replace #$source by keyword argument source. Signed-off-by: Jelle Licht <jlicht@fsfe.org>
This commit is contained in:
parent
c1fb20ea53
commit
b91474f15e
1 changed files with 2 additions and 2 deletions
|
@ -96,8 +96,8 @@ Helm Chart for Kubernetes.")
|
||||||
#:phases
|
#:phases
|
||||||
#~(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(replace 'unpack
|
(replace 'unpack
|
||||||
(lambda _
|
(lambda* (#:key source #:allow-other-keys)
|
||||||
(copy-file #$source "./kubectl")
|
(copy-file source "./kubectl")
|
||||||
(chmod "kubectl" #o644)))
|
(chmod "kubectl" #o644)))
|
||||||
(add-before 'install 'chmod
|
(add-before 'install 'chmod
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in a new issue