netfetch: init at 5.2.10

Signed-off-by: Victor Hang <vhvictorhang@gmail.com>
This commit is contained in:
Victor Hang 2024-09-01 01:50:23 +02:00
parent 25b0dcbd79
commit c3b6ef7417
No known key found for this signature in database
GPG Key ID: 71422740C1B57205
2 changed files with 54 additions and 0 deletions

View File

@ -2255,6 +2255,12 @@
githubId = 80325;
name = "Benjamin Andresen";
};
banh-canh = {
email = "vhvictorhang@gmail.com";
github = "Banh-Canh";
githubId = 66330398;
name = "Victor Hang";
};
barab-i = {
email = "barab_i@outlook.com";
github = "barab-i";

View File

@ -0,0 +1,48 @@
{
lib,
buildGoModule,
fetchFromGitHub,
installShellFiles,
stdenv,
}:
buildGoModule rec {
pname = "netfetch";
version = "5.2.10";
src = fetchFromGitHub {
owner = "deggja";
repo = "netfetch";
rev = "refs/tags/${version}";
hash = "sha256-N3wKpWdG92cXH0TwAkcsld9TRrfPRkbw0uZY/X4d+xk=";
};
vendorHash = "sha256-/Em3hx5tiQjThLBPJDHGsqxUV3eXeymJ5pY9c601OW0=";
proxyVendor = true;
subPackages = [ "backend" ];
ldflags = [
"-s"
"-w"
"-X github.com/deggja/netfetch/backend/cmd.Version=${version}"
];
nativeBuildInputs = [ installShellFiles ];
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
mv $out/bin/backend $out/bin/$pname
installShellCompletion --cmd $pname \
--bash <($out/bin/$pname completion bash) \
--fish <($out/bin/$pname completion fish) \
--zsh <($out/bin/$pname completion zsh)
'';
meta = {
homepage = "https://github.com/deggja/netfetch";
description = "Kubernetes tool for scanning clusters for network policies and identifying unprotected workloads";
license = lib.licenses.mit;
mainProgram = "netfetch";
maintainers = with lib.maintainers; [ banh-canh ];
};
}