diff options
author | Isaac van Bakel <isaac.vanbakel@inf.ethz.ch> | 2024-10-28 12:33:18 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2024-11-03 13:05:26 +0100 |
commit | ba4c8bdd42c61ca1bf755f7a948ccb16e3031080 (patch) | |
tree | 4b7e866794393894b27012afd0db4edc320b9b35 | |
parent | b91474f15e005a114355101a239f3e6f04f87b66 (diff) |
nongnu: kompose: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (kompose)[#: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 84ef6a6..23c95d5 100644 --- a/nongnu/packages/k8s.scm +++ b/nongnu/packages/k8s.scm @@ -132,8 +132,8 @@ view logs.") #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ - (copy-file #$source "./kompose"))) + (lambda* (#:key source #:allow-other-keys) + (copy-file source "./kompose"))) (add-before 'install 'chmod (lambda _ (chmod "kompose" #o555)))))) |