Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6f11edab638d
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ae48415e8b5f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Mar 25, 2020

  1. protonvpn-cli-ng: 2.2.0 -> 2.2.2

    Some changes were made after final review of the package. There was a
    missing runtime dependency that was discovered after merge of the
    backport
    
    (cherry picked from commit 9fe4a63)
    Reason: The dependency can make the package work or not
    JeffLabonte committed Mar 25, 2020
    Copy the full SHA
    c0ce6d0 View commit details

Commits on Mar 26, 2020

  1. Merge pull request #83328 from JeffLabonte/update_protonvpn_ng_2.2.0-…

    …with_fix
    
    [19.09] protonvpn ng 2.2.0 to 2.2.2
    bhipple authored Mar 26, 2020
    Copy the full SHA
    ae48415 View commit details
Showing with 6 additions and 5 deletions.
  1. +6 −5 pkgs/applications/networking/protonvpn-cli-ng/default.nix
11 changes: 6 additions & 5 deletions pkgs/applications/networking/protonvpn-cli-ng/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, lib, fetchFromGitHub, python3Packages, openvpn, dialog }:
{ lib, fetchFromGitHub, python3Packages, openvpn, dialog, iptables }:

python3Packages.buildPythonApplication rec {
name = "protonvpn-cli-ng";
pname = "protonvpn-cli-ng";
version = "2.2.2";

src = fetchFromGitHub {
owner = "protonvpn";
repo = "protonvpn-cli-ng";
repo = "${pname}";
rev = "v${version}";
sha256 = "0ixjb02kj4z79whm1izd8mrn2h0rp9cmw4im1qvp93rahqxdd4n8";
};
@@ -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.jefflabonte ];
maintainers = with maintainers; [ jtcoolen jefflabonte ];
license = licenses.gpl3;
platforms = platforms.unix;
};