honeytail: init at 1.6.0
This commit is contained in:
parent
017328f71d
commit
3db1a83518
21
pkgs/servers/tracing/honeycomb/honeytail/default.nix
Normal file
21
pkgs/servers/tracing/honeycomb/honeytail/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
||||
|
6
pkgs/servers/tracing/honeycomb/honeytail/versions.nix
Normal file
6
pkgs/servers/tracing/honeycomb/honeytail/versions.nix
Normal file
@ -0,0 +1,6 @@
|
||||
generic: {
|
||||
v1_6_0 = generic {
|
||||
version = "1.6.0";
|
||||
sha256 = "039svpvqjck7s3rq86s29xgcyxl1wr0zj90s3jsyp058zk1dgwdy";
|
||||
};
|
||||
}
|
@ -34232,4 +34232,6 @@ with pkgs;
|
||||
};
|
||||
|
||||
zthrottle = callPackage ../tools/misc/zthrottle { };
|
||||
|
||||
honeytail = callPackage ../servers/tracing/honeycomb/honeytail { };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user