pritunl-ssh: init at 1.0.1674.4

pritunl-ssh is a small Python script used to retrieve
the SSH certificate from the Pritunl Zero server.

Homepage: zero.pritunl.com
GitHub: pritunl/pritunl-zero-client

Signed-off-by: Chinmay D. Pai <chinmaydpai@gmail.com>
This commit is contained in:
Chinmay D. Pai 2021-02-14 22:37:11 +05:30 committed by Chinmay D. Pai
parent 971a85d2c1
commit 5b2e2fd6ed
No known key found for this signature in database
GPG key ID: 75507BE256F40CED
2 changed files with 31 additions and 0 deletions

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

@ -7213,6 +7213,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 { };