From e72d4a774182ca4fc2e930eee32fe70467efff26 Mon Sep 17 00:00:00 2001 From: Isaac van Bakel Date: Mon, 28 Oct 2024 12:34:08 +0100 Subject: nongnu: helm-kubernetes: Fix baked-in source in unpack overrides. * nongnu/packages/k8s.scm (helm-kubernetes)[#:phases]: Replace source G-expression by keyword argument source. Signed-off-by: Jelle Licht --- nongnu/packages/k8s.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nongnu') 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)))))) -- cgit v1.2.3