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:
Benjamin Hipple 2020-03-24 20:46:47 -04:00 committed by GitHub
commit ba1bf8404d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,14 +1,14 @@
{ stdenv, lib, fetchFromGitHub, python3Packages, openvpn, dialog }:
{ lib, fetchFromGitHub, python3Packages, openvpn, dialog, iptables }:
python3Packages.buildPythonApplication rec {
name = "protonvpn-cli-ng";
version = "2.2.0";
pname = "protonvpn-cli-ng";
version = "2.2.2";
src = fetchFromGitHub {
owner = "protonvpn";
repo = "protonvpn-cli-ng";
repo = "${pname}";
rev = "v${version}";
sha256 = "11fvnnr5p3qdc4y10815jnydcjvxlxwkkq9kvaajg0yszq84rwkz";
sha256 = "0ixjb02kj4z79whm1izd8mrn2h0rp9cmw4im1qvp93rahqxdd4n8";
};
propagatedBuildInputs = (with python3Packages; [
@ -19,15 +19,16 @@ python3Packages.buildPythonApplication rec {
]) ++ [
dialog
openvpn
iptables
];
# No tests
doCheck = false;
meta = with stdenv.lib; {
meta = with lib; {
description = "Linux command-line client for ProtonVPN";
homepage = "https://github.com/protonvpn/protonvpn-cli-ng";
maintainers = [ maintainers.jtcoolen ];
maintainers = with maintainers; [ jtcoolen jefflabonte ];
license = licenses.gpl3;
platforms = platforms.unix;
};