diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-07-02 12:07:05 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:38 +0200 |
commit | cd455e0bb113d049bfd516047b94a03953f5dd88 (patch) | |
tree | 16c64b8606cb2f085407557c28cacc92a0d96419 /gnu/packages | |
parent | 8f710be89e18175e89d73332030b305f434d8883 (diff) | |
download | guix-cd455e0bb113d049bfd516047b94a03953f5dd88.tar.gz guix-cd455e0bb113d049bfd516047b94a03953f5dd88.zip |
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
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/vpn.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 199f523461..bc067260fd 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -928,8 +928,7 @@ traversing network address translators (@dfn{NAT}s) and firewalls.") "ncurses" "openvpn" "procps" - "which"))))) - #t)) + "which"))))))) ;; The `protonvpn' script wants to write to `~user' to initialize its ;; logger, so simply setting HOME=/tmp won't cut it. Remove ;; sanity-check. @@ -937,7 +936,8 @@ traversing network address translators (@dfn{NAT}s) and firewalls.") (native-inputs (list python-docopt)) (inputs - (list dialog + (list bash-minimal + dialog iproute iptables ncurses |