mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: protonvpn-cli: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/vpn.scm (protonvpn-cli)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I4390f79230e25fdb64dba96c57b7f32905245bc6
This commit is contained in:
parent
8f710be89e
commit
cd455e0bb1
1 changed files with 3 additions and 3 deletions
|
@ -928,8 +928,7 @@ (define-public protonvpn-cli
|
||||||
"ncurses"
|
"ncurses"
|
||||||
"openvpn"
|
"openvpn"
|
||||||
"procps"
|
"procps"
|
||||||
"which")))))
|
"which")))))))
|
||||||
#t))
|
|
||||||
;; The `protonvpn' script wants to write to `~user' to initialize its
|
;; The `protonvpn' script wants to write to `~user' to initialize its
|
||||||
;; logger, so simply setting HOME=/tmp won't cut it. Remove
|
;; logger, so simply setting HOME=/tmp won't cut it. Remove
|
||||||
;; sanity-check.
|
;; sanity-check.
|
||||||
|
@ -937,7 +936,8 @@ (define-public protonvpn-cli
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-docopt))
|
(list python-docopt))
|
||||||
(inputs
|
(inputs
|
||||||
(list dialog
|
(list bash-minimal
|
||||||
|
dialog
|
||||||
iproute
|
iproute
|
||||||
iptables
|
iptables
|
||||||
ncurses
|
ncurses
|
||||||
|
|
Loading…
Reference in a new issue