Merge pull request #195067 from bigzilla/feature/pritunl-client

pritunl-client: init at 1.3.3300.95
This commit is contained in:
Anderson Torres 2022-10-15 10:06:00 -03:00 committed by GitHub
commit 75e5a24795
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

View File

@ -1760,6 +1760,12 @@
githubId = 28444296;
name = "Benjamin Hougland";
};
bigzilla = {
email = "m.billyzaelani@gmail.com";
github = "bigzilla";
githubId = 20436235;
name = "Billy Zaelani Malik";
};
billewanick = {
email = "bill@ewanick.com";
github = "billewanick";

View File

@ -0,0 +1,27 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "pritunl-client";
version = "1.3.3300.95";
src = fetchFromGitHub {
owner = "pritunl";
repo = "pritunl-client-electron";
rev = version;
sha256 = "sha256-kPZFfKdiIq45/uyfsllUJrCphfUV5VX5QwaEg8351GI=";
};
modRoot = "cli";
vendorSha256 = "sha256-fI2RIzvfbqBgchsvY8hsiecXYItM2XX9h8oiP3zmfTA=";
postInstall = ''
mv $out/bin/cli $out/bin/pritunl-client
'';
meta = with lib; {
description = "Pritunl OpenVPN client CLI";
homepage = "https://github.com/pritunl/pritunl-client-electron/tree/master/cli";
license = licenses.unfree;
maintainers = with maintainers; [ bigzilla ];
};
}

View File

@ -10382,6 +10382,8 @@ with pkgs;
prettyping = callPackage ../tools/networking/prettyping { };
pritunl-client = callPackage ../tools/networking/pritunl-client { };
pritunl-ssh = callPackage ../tools/networking/pritunl-ssh { };
profile-cleaner = callPackage ../tools/misc/profile-cleaner { };