mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
32 lines
643 B
Nix
32 lines
643 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "goflow2";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "netsampler";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-tY2+4lGy+2thpRDNeTw1kfOtZvOspXCYU7dhYcckbRo=";
|
|
};
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.version=${version}"
|
|
];
|
|
|
|
vendorHash = "sha256-KcknR2IaHz2EzOFwSHppbmNDISrFdNoB4QmLT74/KWY=";
|
|
|
|
meta = with lib; {
|
|
description = "High performance sFlow/IPFIX/NetFlow Collector";
|
|
homepage = "https://github.com/netsampler/goflow2";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ yuka ];
|
|
};
|
|
}
|