Merge pull request #113112 from Thunderbottom/pritunl-ssh

This commit is contained in:
Sandro 2021-02-17 11:34:48 +01:00 committed by GitHub
commit 26e3d26777
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 0 deletions

View file

@ -9369,6 +9369,16 @@
githubId = 1391883;
name = "Tom Hall";
};
Thunderbottom = {
email = "chinmaydpai@gmail.com";
github = "Thunderbottom";
githubId = 11243138;
name = "Chinmay D. Pai";
keys = [{
longkeyid = "rsa4096/0x75507BE256F40CED";
fingerprint = "7F3E EEAA EE66 93CC 8782 042A 7550 7BE2 56F4 0CED";
}];
};
tiagolobocastro = {
email = "tiagolobocastro@gmail.com";
github = "tiagolobocastro";

View file

@ -0,0 +1,29 @@
{ lib, stdenv, fetchFromGitHub, python3 }:
stdenv.mkDerivation rec {
pname = "pritunl-ssh";
version = "1.0.1674.4";
src = fetchFromGitHub {
owner = "pritunl";
repo = "pritunl-zero-client";
rev = version;
sha256 = "07z60lipbwm0p7s2bxcij21jid8w4nyh6xk2qq5qdm4acq4k1i88";
};
buildInputs = [ python3 ];
installPhase = ''
mkdir -p $out/bin
install ssh_client.py $out/bin/pritunl-ssh
install ssh_host_client.py $out/bin/pritunl-ssh-host
'';
meta = with lib; {
description = "Pritunl Zero SSH client";
homepage = "https://github.com/pritunl/pritunl-zero-client";
license = licenses.unfree;
maintainers = with maintainers; [ Thunderbottom ];
platforms = platforms.unix;
};
}

View file

@ -7241,6 +7241,8 @@ in
prettyping = callPackage ../tools/networking/prettyping { };
pritunl-ssh = callPackage ../tools/networking/pritunl-ssh { };
profile-cleaner = callPackage ../tools/misc/profile-cleaner { };
profile-sync-daemon = callPackage ../tools/misc/profile-sync-daemon { };