diff options
author | Isaac van Bakel <isaac.vanbakel@inf.ethz.ch> | 2024-10-28 12:33:01 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2024-11-03 13:05:26 +0100 |
commit | b91474f15e005a114355101a239f3e6f04f87b66 (patch) | |
tree | 5847ed5838a93a657360681e41a87bd92c1575c5 | |
parent | c1fb20ea53a0cb4b29d1919adf09a3ea20d36b6d (diff) |
nongnu: kubectl: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (kubectl)[#:phases]<unpack>: Replace #$source by
keyword argument source.
Signed-off-by: Jelle Licht <jlicht@fsfe.org>
-rw-r--r-- | nongnu/packages/k8s.scm | 4 |
1 files changed, 2 insertions, 2 deletions
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 _ |