protonvpn-cli-ng: 2.2.0 -> 2.2.2

This commit is contained in:
Jeff Labonte 2020-03-04 11:32:15 -05:00
parent d881de1e96
commit 9fe4a634c1

View File

@ -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;
}; };