summaryrefslogtreecommitdiff
path: root/nongnu
diff options
context:
space:
mode:
authorIsaac van Bakel <isaac.vanbakel@inf.ethz.ch>2024-10-28 12:34:08 +0100
committerJelle Licht <jlicht@fsfe.org>2024-11-03 13:05:26 +0100
commite72d4a774182ca4fc2e930eee32fe70467efff26 (patch)
tree6a696cb04b30517810804c52c7a6ab5208fc0e40 /nongnu
parentba4c8bdd42c61ca1bf755f7a948ccb16e3031080 (diff)
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>
Diffstat (limited to 'nongnu')
-rw-r--r--nongnu/packages/k8s.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/nongnu/packages/k8s.scm b/nongnu/packages/k8s.scm
index 23c95d5..8466bd2 100644
--- a/nongnu/packages/k8s.scm
+++ b/nongnu/packages/k8s.scm
@@ -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))))))