diff options
-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 _ |