honeytail: init at 1.6.0

This commit is contained in:
Ian Duncan 2022-01-07 16:32:31 +00:00
parent 017328f71d
commit 3db1a83518
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ lib, buildGoModule, fetchurl }:
import ./versions.nix ({version, sha256}:
buildGoModule {
pname = "honeytail";
inherit version;
vendorSha256 = "sha256-LtiiLGLjhbfT49A6Fw5CbSbnmTHMxtcUssr+ayCVrvY=";
src = fetchurl {
url = "https://github.com/honeycombio/honeytail/archive/refs/tags/v${version}.tar.gz";
inherit sha256;
};
inherit (buildGoModule.go) GOOS GOARCH;
meta = with lib; {
description = "agent for ingesting log file data into honeycomb.io and making it available for exploration";
homepage = "https://honeycomb.io/";
license = licenses.asl20;
maintainers = [ maintainers.iand675 ];
};
})

View File

@ -0,0 +1,6 @@
generic: {
v1_6_0 = generic {
version = "1.6.0";
sha256 = "039svpvqjck7s3rq86s29xgcyxl1wr0zj90s3jsyp058zk1dgwdy";
};
}

View File

@ -34232,4 +34232,6 @@ with pkgs;
};
zthrottle = callPackage ../tools/misc/zthrottle { };
honeytail = callPackage ../servers/tracing/honeycomb/honeytail { };
}