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>
This commit is contained in:
Isaac van Bakel 2024-10-28 12:34:43 +01:00 committed by Jelle Licht
parent e72d4a7741
commit 9f065c321e
No known key found for this signature in database
GPG key ID: DA4597F947B41025

View file

@ -197,8 +197,8 @@ define, install, and upgrade Kubernetes applications.")
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(replace 'unpack (replace 'unpack
(lambda _ (lambda* (#:key source #:allow-other-keys)
(copy-file #$source "./kind") (copy-file source "./kind")
(chmod "kind" #o644))) (chmod "kind" #o644)))
(add-before 'install 'chmod (add-before 'install 'chmod
(lambda _ (lambda _