mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
protonvpn-cli_2: init at 2.2.11
Naming as protonvpn-cli_2 as this version uses openvpn to perform connections instead of NetworkManager as on the official version
This commit is contained in:
parent
0ffb521ac8
commit
ac247e0885
51
pkgs/applications/networking/protonvpn-cli/2.nix
Normal file
51
pkgs/applications/networking/protonvpn-cli/2.nix
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonApplication
|
||||||
|
, fetchFromGitHub
|
||||||
|
, pythonOlder
|
||||||
|
, requests
|
||||||
|
, docopt
|
||||||
|
, pythondialog
|
||||||
|
, jinja2
|
||||||
|
, distro
|
||||||
|
, dialog
|
||||||
|
, iptables
|
||||||
|
, openvpn }:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "protonvpn-cli_2";
|
||||||
|
version = "2.2.11";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Rafficer";
|
||||||
|
repo = "linux-cli-community";
|
||||||
|
# There is a tag and branch with the same name
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
sha256 = "sha256-CWQpisJPBXbf+d5tCGuxfSQQZBeF36WFF4b6OSUn3GY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
docopt
|
||||||
|
pythondialog
|
||||||
|
jinja2
|
||||||
|
distro
|
||||||
|
dialog
|
||||||
|
openvpn
|
||||||
|
iptables
|
||||||
|
];
|
||||||
|
|
||||||
|
# No tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Linux command-line client for ProtonVPN using Openvpn";
|
||||||
|
homepage = "https://github.com/Rafficer/linux-cli-community";
|
||||||
|
maintainers = with maintainers; [ jtcoolen jefflabonte shamilton ];
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
mainProgram = "protonvpn";
|
||||||
|
};
|
||||||
|
}
|
@ -29023,6 +29023,7 @@ with pkgs;
|
|||||||
protonmail-bridge = callPackage ../applications/networking/protonmail-bridge { };
|
protonmail-bridge = callPackage ../applications/networking/protonmail-bridge { };
|
||||||
|
|
||||||
protonvpn-cli = python3Packages.callPackage ../applications/networking/protonvpn-cli { };
|
protonvpn-cli = python3Packages.callPackage ../applications/networking/protonvpn-cli { };
|
||||||
|
protonvpn-cli_2 = python3Packages.callPackage ../applications/networking/protonvpn-cli/2.nix { };
|
||||||
|
|
||||||
protonvpn-gui = python3Packages.callPackage ../applications/networking/protonvpn-gui { };
|
protonvpn-gui = python3Packages.callPackage ../applications/networking/protonvpn-gui { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user