ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
23 lines
639 B
Nix
23 lines
639 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
import ./versions.nix ({version, sha256}:
|
|
buildGoModule {
|
|
pname = "honeytail";
|
|
inherit version;
|
|
vendorHash = "sha256-LtiiLGLjhbfT49A6Fw5CbSbnmTHMxtcUssr+ayCVrvY=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "honeycombio";
|
|
repo = "honeytail";
|
|
rev = "v${version}";
|
|
hash = 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 ];
|
|
};
|
|
})
|
|
|