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

View file

@ -29,8 +29,8 @@
#:phases #:phases
#~(modify-phases %standard-phases #~(modify-phases %standard-phases
(replace 'unpack (replace 'unpack
(lambda _ (lambda* (#:key source #:allow-other-keys)
(invoke "tar" "-xvf" #$source)))))) (invoke "tar" "-xvf" source))))))
(home-page "https://k9scli.io") (home-page "https://k9scli.io")
(supported-systems '("x86_64-linux")) (supported-systems '("x86_64-linux"))
(synopsis "Kubernetes CLI To Manage Your Clusters In Style") (synopsis "Kubernetes CLI To Manage Your Clusters In Style")