mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 01:03:25 +00:00
763c2366a0
Diff: https://github.com/controlplaneio/netassert/compare/v2.0.1...v2.0.2 Changelog: https://github.com/controlplaneio/netassert/blob/v2.0.2/CHANGELOG.md
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "netassert";
|
|
version = "2.0.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "controlplaneio";
|
|
repo = "netassert";
|
|
rev = "v${version}";
|
|
hash = "sha256-UWiPjLvMuEc12HJ5ZiwKGeD0hh/y9j4P6FKu0uynUGA=";
|
|
};
|
|
vendorHash = "sha256-nDnSJOfEn9KieDwdNeIGFcI4m8rVU+Yaxwa+dKyNSHM=";
|
|
|
|
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 = "A 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 ];
|
|
};
|
|
}
|