diff options
author | Isaac van Bakel <isaac.vanbakel@inf.ethz.ch> | 2024-10-28 12:34:43 +0100 |
---|---|---|
committer | Jelle Licht <jlicht@fsfe.org> | 2024-11-03 13:05:26 +0100 |
commit | 9f065c321e7d6b39f8610a8d65528f79a8733459 (patch) | |
tree | be2756c451bf51a2acecf9379ac4c95334ab0c1f | |
parent | e72d4a774182ca4fc2e930eee32fe70467efff26 (diff) |
nongnu: kind: Fix baked-in source in unpack overrides.
* nongnu/packages/k8s.scm (kind)[#: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 8466bd2..621ba07 100644 --- a/nongnu/packages/k8s.scm +++ b/nongnu/packages/k8s.scm @@ -197,8 +197,8 @@ define, install, and upgrade Kubernetes applications.") #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ - (copy-file #$source "./kind") + (lambda* (#:key source #:allow-other-keys) + (copy-file source "./kind") (chmod "kind" #o644))) (add-before 'install 'chmod (lambda _ |