protonvpn-cli: init at 1.1.2

This commit is contained in:
Claas Augner 2019-01-14 12:22:42 +01:00
parent 3e62cdd72e
commit 5ed6db2292
2 changed files with 48 additions and 0 deletions

View file

@ -0,0 +1,46 @@
{ stdenv, lib, fetchFromGitHub, makeWrapper, coreutils
, openvpn, python, dialog, wget, update-resolv-conf }:
let
expectedUpdateResolvPath = "/etc/openvpn/update-resolv-conf";
actualUpdateResolvePath = "${update-resolv-conf}/libexec/openvpn/update-resolv-conf";
in stdenv.mkDerivation rec {
name = "protonvpn-cli";
version = "1.1.2";
src = fetchFromGitHub {
owner = "ProtonVPN";
repo = "protonvpn-cli";
rev = "v${version}";
sha256 = "0xvflr8zf267n3dv63nkk4wjxhbckw56sqmyca3krf410vrd7zlv";
};
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p "$out/bin"
substituteInPlace protonvpn-cli.sh \
--replace ${expectedUpdateResolvPath} ${actualUpdateResolvePath} \
--replace \$UID 0 \
--replace /etc/resolv.conf /dev/null \
--replace \
" echo \"Connecting...\"" \
" sed -ri 's@${expectedUpdateResolvPath}@${actualUpdateResolvePath}@g' \"\$openvpn_config\"; echo \"Connecting...\""
cp protonvpn-cli.sh "$out/bin/protonvpn-cli"
ln -s "$out/bin/protonvpn-cli" "$out/bin/pvpn"
'';
postInstallPhase = ''
wrapProgram $out/protonvpn-cli \
--prefix PATH : ${lib.makeBinPath [ coreutils openvpn python dialog wget update-resolv-conf ]}
'';
meta = with stdenv.lib; {
description = "ProtonVPN Command-Line Tool";
homepage = https://github.com/ProtonVPN/protonvpn-cli;
maintainers = with maintainers; [ caugner ];
license = licenses.mit;
platforms = platforms.unix;
};
}

View file

@ -18791,6 +18791,8 @@ in
protonmail-bridge = libsForQt5.callPackage ../applications/networking/protonmail-bridge { };
protonvpn-cli = callPackage ../applications/networking/protonvpn-cli { };
psi = callPackage ../applications/networking/instant-messengers/psi { };
psi-plus = callPackage ../applications/networking/instant-messengers/psi-plus { };