summaryrefslogtreecommitdiff
path: root/nongnu
diff options
context:
space:
mode:
authorIsaac van Bakel <isaac.vanbakel@inf.ethz.ch>2024-10-28 12:32:27 +0100
committerJelle Licht <jlicht@fsfe.org>2024-11-03 13:05:26 +0100
commitc1fb20ea53a0cb4b29d1919adf09a3ea20d36b6d (patch)
tree9927121ec6e9419db81d1f2ed6d9a472a7b0ceec /nongnu
parentd0e6e969ed3edf845332b26fd1c58751195a38c0 (diff)
nongnu: katenary: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (katenary)[#: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 d6ed2da..1f99ee0 100644
--- a/nongnu/packages/k8s.scm
+++ b/nongnu/packages/k8s.scm
@@ -62,8 +62,8 @@ offers subsequent commands to interact with your observed resources.")
#:phases
#~(modify-phases %standard-phases
(replace 'unpack
- (lambda _
- (copy-file #$source "./katenary")
+ (lambda* (#:key source #:allow-other-keys)
+ (copy-file source "./katenary")
(chmod "katenary" #o644)))
(add-before 'install 'chmod
(lambda _