From b91474f15e005a114355101a239f3e6f04f87b66 Mon Sep 17 00:00:00 2001 From: Isaac van Bakel Date: Mon, 28 Oct 2024 12:33:01 +0100 Subject: nongnu: kubectl: Fix baked-in source in unpack overrides. * nongnu/packages/k8s.scm (kubectl)[#:phases]: Replace #$source 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 1f99ee0..84ef6a6 100644 --- a/nongnu/packages/k8s.scm +++ b/nongnu/packages/k8s.scm @@ -96,8 +96,8 @@ Helm Chart for Kubernetes.") #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ - (copy-file #$source "./kubectl") + (lambda* (#:key source #:allow-other-keys) + (copy-file source "./kubectl") (chmod "kubectl" #o644))) (add-before 'install 'chmod (lambda _ -- cgit v1.2.3