diff options
author | Josselin Poiret <dev@jpoiret.xyz> | 2022-02-08 19:05:41 +0100 |
---|---|---|
committer | Brice Waegeneire <brice@waegenei.re> | 2022-02-12 14:08:23 +0100 |
commit | e641d707e1ec8de2bfc658dcd1757360300aa509 (patch) | |
tree | b049552bf67cf27a438259d2949a86b8eb9d0274 | |
parent | 9c8f68f4796f23c11173fa3f90c69bc85b224ac6 (diff) | |
download | guix-e641d707e1ec8de2bfc658dcd1757360300aa509.tar guix-e641d707e1ec8de2bfc658dcd1757360300aa509.tar.gz |
gnu: protonvpn-cli: Remove sanity-check phase.
* gnu/packages/vpn.scm (protonvpn-cli)[arguments]: Remove sanity-check
phase.
-rw-r--r-- | gnu/packages/vpn.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/vpn.scm b/gnu/packages/vpn.scm index 9fd0e4493d..a82db31e30 100644 --- a/gnu/packages/vpn.scm +++ b/gnu/packages/vpn.scm @@ -769,7 +769,11 @@ traversing network address translators (@dfn{NAT}s) and firewalls.") "openvpn" "procps" "which"))))) - #t))))) + #t)) + ;; The `protonvpn' script wants to write to `~user' to initialize its + ;; logger, so simply setting HOME=/tmp won't cut it. Remove + ;; sanity-check. + (delete 'sanity-check)))) (native-inputs (list python-docopt)) (inputs |