From d0e6e969ed3edf845332b26fd1c58751195a38c0 Mon Sep 17 00:00:00 2001 From: Isaac van Bakel Date: Mon, 28 Oct 2024 12:31:50 +0100 Subject: nongnu: k9s: Fix baked-in source in unpack overrides. * nongnu/packages/k8s.scm (k9s)[#:phases]: Replace #$source by keyword argument source. Signed-off-by: Jelle Licht --- nongnu/packages/k8s.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nongnu/packages/k8s.scm') diff --git a/nongnu/packages/k8s.scm b/nongnu/packages/k8s.scm index 42cb803..d6ed2da 100644 --- a/nongnu/packages/k8s.scm +++ b/nongnu/packages/k8s.scm @@ -29,8 +29,8 @@ #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ - (invoke "tar" "-xvf" #$source)))))) + (lambda* (#:key source #:allow-other-keys) + (invoke "tar" "-xvf" source)))))) (home-page "https://k9scli.io") (supported-systems '("x86_64-linux")) (synopsis "Kubernetes CLI To Manage Your Clusters In Style") -- cgit v1.2.3