Merge pull request #162746 from heph2/submit/goflow

This commit is contained in:
Martin Weinelt 2022-03-08 19:50:28 +01:00 committed by GitHub
commit 88fa6dc00f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "goflow";
version = "3.4.3";
src = fetchFromGitHub {
owner = "cloudflare";
repo = pname;
rev = "v${version}";
sha256 = "sha256-dUoiuoM87Bh3ndzHG/YnwnRWnVbtPDuVdICEXcezCp8=";
};
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;
};
}

View File

@ -1064,6 +1064,8 @@ with pkgs;
gobgp = callPackage ../tools/networking/gobgp { };
goflow = callPackage ../tools/networking/goflow { };
gofu = callPackage ../applications/misc/gofu { };
godns = callPackage ../tools/networking/godns { };