summaryrefslogtreecommitdiff
path: root/nongnu
diff options
context:
space:
mode:
authorIsaac van Bakel <isaac.vanbakel@inf.ethz.ch>2024-10-28 12:31:50 +0100
committerJelle Licht <jlicht@fsfe.org>2024-11-03 13:05:26 +0100
commitd0e6e969ed3edf845332b26fd1c58751195a38c0 (patch)
tree6223e338483d665620f75c4bd65ed4c8db0cdfe8 /nongnu
parentbb03bb5dbaf911fccc99ebeb047c92039bcc2d39 (diff)
nongnu: k9s: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (k9s)[#:phases]<unpack>: Replace #$source 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 42cb803..d6ed2da 100644
--- a/nongnu/packages/k8s.scm
+++ b/nongnu/packages/k8s.scm
@@ -29,8 +29,8 @@
#:phases
#~(modify-phases %standard-phases
(replace 'unpack
- (lambda _
- (invoke "tar" "-xvf" #$source))))))
+ (lambda* (#:key source #:allow-other-keys)
+ (invoke "tar" "-xvf" source))))))
(home-page "https://k9scli.io")
(supported-systems '("x86_64-linux"))
(synopsis "Kubernetes CLI To Manage Your Clusters In Style")