Merge pull request #81735 from JeffLabonte/protonvpn-ng_update_2.2.0_to_2.2.2
Protonvpn ng update 2.2.0 to 2.2.2
This commit is contained in:
commit
ba1bf8404d
@ -1,14 +1,14 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, python3Packages, openvpn, dialog }:
|
{ lib, fetchFromGitHub, python3Packages, openvpn, dialog, iptables }:
|
||||||
|
|
||||||
python3Packages.buildPythonApplication rec {
|
python3Packages.buildPythonApplication rec {
|
||||||
name = "protonvpn-cli-ng";
|
pname = "protonvpn-cli-ng";
|
||||||
version = "2.2.0";
|
version = "2.2.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "protonvpn";
|
owner = "protonvpn";
|
||||||
repo = "protonvpn-cli-ng";
|
repo = "${pname}";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "11fvnnr5p3qdc4y10815jnydcjvxlxwkkq9kvaajg0yszq84rwkz";
|
sha256 = "0ixjb02kj4z79whm1izd8mrn2h0rp9cmw4im1qvp93rahqxdd4n8";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = (with python3Packages; [
|
propagatedBuildInputs = (with python3Packages; [
|
||||||
@ -19,15 +19,16 @@ python3Packages.buildPythonApplication rec {
|
|||||||
]) ++ [
|
]) ++ [
|
||||||
dialog
|
dialog
|
||||||
openvpn
|
openvpn
|
||||||
|
iptables
|
||||||
];
|
];
|
||||||
|
|
||||||
# No tests
|
# No tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "Linux command-line client for ProtonVPN";
|
description = "Linux command-line client for ProtonVPN";
|
||||||
homepage = "https://github.com/protonvpn/protonvpn-cli-ng";
|
homepage = "https://github.com/protonvpn/protonvpn-cli-ng";
|
||||||
maintainers = [ maintainers.jtcoolen ];
|
maintainers = with maintainers; [ jtcoolen jefflabonte ];
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user