mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 02:53:55 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
27 lines
595 B
Nix
27 lines
595 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "goflow";
|
|
version = "3.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudflare";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-nMWAvvJj1S5W4ItOT212bn9CPG5Lpdd+k8ciwGmeu0w=";
|
|
};
|
|
|
|
vendorHash = "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;
|
|
};
|
|
}
|