mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 00:18:07 +01:00
nongnu: helm-kubernetes: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (helm-kubernetes)[#:phases]<unpack>: Replace source G-expression by keyword argument source. Signed-off-by: Jelle Licht <jlicht@fsfe.org>
This commit is contained in:
parent
ba4c8bdd42
commit
e72d4a7741
1 changed files with 2 additions and 2 deletions
|
@ -165,8 +165,8 @@ such as Kubernetes (or OpenShift).")
|
|||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'unpack
|
||||
(lambda _
|
||||
(invoke "tar" "-xvf" #$source)))
|
||||
(lambda* (#:key source #:allow-other-keys)
|
||||
(invoke "tar" "-xvf" source)))
|
||||
(add-before 'install 'chmod
|
||||
(lambda _
|
||||
(chmod "linux-amd64/helm" #o555))))))
|
||||
|
|
Loading…
Reference in a new issue