about summary refs log tree commit diff
path: root/pkgs/servers/tracing/honeycomb/honeytail/default.nix
blob: cbe901f2859a120a6609b2bca282c1ebb464545d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ];
  };
})