diff options
Diffstat (limited to 'nongnu/packages')
-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 84ef6a6..23c95d5 100644 --- a/nongnu/packages/k8s.scm +++ b/nongnu/packages/k8s.scm @@ -132,8 +132,8 @@ view logs.") #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ - (copy-file #$source "./kompose"))) + (lambda* (#:key source #:allow-other-keys) + (copy-file source "./kompose"))) (add-before 'install 'chmod (lambda _ (chmod "kompose" #o555)))))) |