civodul pushed a commit to branch core-updates
in repository guix.
commit d1827d5c636adb395153a4ed6064629ed5b7664b
Author: Maxime Devos <[email protected]>
AuthorDate: Mon May 31 20:12:55 2021 +0200
gnu: wireguard-tools: Set #:sh argument of 'wrap-program'.
* gnu/packages/vpn.scm
(wireguard-tools)[arguments]<#:phases>{wrap-wg-quick}:
Set #:sh argument of ‘wrap-program’.
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/vpn.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm
index 66c103e..34715a4 100644
--- a/gnu/packages/vpn.scm
+++ b/gnu/packages/vpn.scm
@@ -726,6 +726,7 @@ WireGuard was added to Linux 5.6.")
(coreutils (string-append (assoc-ref inputs "coreutils")
"/bin")))
(wrap-program (string-append out "/bin/wg-quick")
+ #:sh (search-input-file inputs "bin/bash")
`("PATH" ":" prefix ,(append inputs-sbin
(list coreutils))))
#t))))))