mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
protonvpn-cli: fix missing runtime dependancies
This commit is contained in:
parent
872122af43
commit
f924dc9f99
1 changed files with 2 additions and 5 deletions
|
@ -28,12 +28,9 @@ in stdenv.mkDerivation rec {
|
|||
" 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 \
|
||||
wrapProgram $out/bin/protonvpn-cli \
|
||||
--prefix PATH : ${lib.makeBinPath [ coreutils openvpn python dialog wget update-resolv-conf ]}
|
||||
ln -s "$out/bin/protonvpn-cli" "$out/bin/pvpn"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue