nixpkgs/pkgs/tools/networking/goflow/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
597 B
Nix
Raw Normal View History

2022-03-08 20:59:06 +03:00
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "goflow";
2022-07-28 16:16:07 +03:00
version = "3.4.4";
2022-03-08 20:59:06 +03:00
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
2022-07-28 16:16:07 +03:00
sha256 = "sha256-nMWAvvJj1S5W4ItOT212bn9CPG5Lpdd+k8ciwGmeu0w=";
2022-03-08 20:59:06 +03:00
};
vendorSha256 = "sha256-fOlfVI8v7KqNSRhAPlZBSHKfZRlCbCgjnMV/6bsqDhg=";
meta = with lib; {
description = "A NetFlow/IPFIX/sFlow collector in Go";
homepage = "https://github.com/cloudflare/goflow";
license = licenses.bsd3;
maintainers = with maintainers; [ heph2 ];
platforms = platforms.all;
};
}