pinniped: init at 0.17.0

This commit is contained in:
Bruno Paulin 2022-06-08 13:38:48 +02:00
parent b513a55c22
commit fda9082208
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec{
pname = "pinniped";
version = "0.17.0";
src = fetchFromGitHub {
owner = "vmware-tanzu";
repo = "pinniped";
rev = "v${version}";
sha256 = "sha256-0h7zyKe2gmC1n9EB5FRVI/io7Yj+91ZAtLy+1u3gyO0=";
};
subPackages = "cmd/pinniped";
vendorSha256 = "sha256-8ohyyciL1ORYOxPu64W0jXASTv+vVZR8StutzbF9N4Y=";
meta = with lib; {
description = "Tool to securely log in to your Kubernetes clusters";
homepage = "https://pinniped.dev/";
license = licenses.asl20;
maintainers = with maintainers; [ "bpaulin" ];
};
}

View File

@ -28923,6 +28923,8 @@ with pkgs;
ktunnel = callPackage ../applications/networking/cluster/ktunnel { };
pinniped = callPackage ../applications/networking/cluster/pinniped { };
pgo-client = callPackage ../applications/networking/cluster/pgo-client { };
popeye = callPackage ../applications/networking/cluster/popeye { };