diff options
Diffstat (limited to 'nongnu')
-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 23c95d5..8466bd2 100644 --- a/nongnu/packages/k8s.scm +++ b/nongnu/packages/k8s.scm @@ -165,8 +165,8 @@ such as Kubernetes (or OpenShift).") #:phases #~(modify-phases %standard-phases (replace 'unpack - (lambda _ - (invoke "tar" "-xvf" #$source))) + (lambda* (#:key source #:allow-other-keys) + (invoke "tar" "-xvf" source))) (add-before 'install 'chmod (lambda _ (chmod "linux-amd64/helm" #o555)))))) |