Skip to content

Commit

Permalink
protonvpn-cli-ng: 2.2.0 -> 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffLabonte committed Mar 25, 2020
1 parent d881de1 commit 9fe4a63
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pkgs/applications/networking/protonvpn-cli-ng/default.nix
Original file line number Diff line number Diff line change
@@ -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; [
Expand All @@ -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;
};
Expand Down

0 comments on commit 9fe4a63

Please sign in to comment.