From 9f065c321e7d6b39f8610a8d65528f79a8733459 Mon Sep 17 00:00:00 2001 From: Isaac van Bakel Date: Mon, 28 Oct 2024 12:34:43 +0100 Subject: nongnu: kind: Fix baked-in source in unpack overrides. * nongnu/packages/k8s.scm (kind)[#: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 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 _ -- cgit v1.2.3