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:
Isaac van Bakel 2024-10-28 12:34:08 +01:00 committed by Jelle Licht
parent ba4c8bdd42
commit e72d4a7741
No known key found for this signature in database
GPG key ID: DA4597F947B41025

View file

@ -165,8 +165,8 @@ such as Kubernetes (or OpenShift).")
#: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)))
(add-before 'install 'chmod (add-before 'install 'chmod
(lambda _ (lambda _
(chmod "linux-amd64/helm" #o555)))))) (chmod "linux-amd64/helm" #o555))))))