Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "netassert";
|
|
version = "2.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "controlplaneio";
|
|
repo = "netassert";
|
|
rev = "v${version}";
|
|
hash = "sha256-72LwWzn9sQNbtPj8X0WsR0j0Cs0s00ogcYfQqULTffw=";
|
|
};
|
|
vendorHash = "sha256-JuyE1pYlTIeG3IGOsvYgQN1lTAb7NWytkp/Ibh91QgA=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X main.version=${src.rev}"
|
|
];
|
|
|
|
postBuild = ''
|
|
mv $GOPATH/bin/{cli,netassert}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/controlplaneio/netassert";
|
|
changelog = "https://github.com/controlplaneio/netassert/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Command line utility to test network connectivity between kubernetes objects";
|
|
longDescription = ''
|
|
NetAssert is a command line utility to test network connectivity between kubernetes objects.
|
|
It currently supports Deployment, Pod, Statefulset and Daemonset.
|
|
You can check the traffic flow between these objects or from these objects to a remote host or an IP address.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ jk ];
|
|
mainProgram = "netassert";
|
|
};
|
|
}
|