biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / tracing / honeycomb / honeyvent / default.nix
blobe950980f0375a94b8fd681f1210d53fc67c0e04a
1 { lib, buildGoModule, fetchFromGitHub }:
2 import ./versions.nix ({version, sha256}:
3   buildGoModule {
4   pname = "honeyvent";
5   inherit version;
6   vendorHash = null;
8   src = fetchFromGitHub {
9     owner = "honeycombio";
10     repo = "honeyvent";
11     rev = "v${version}";
12     hash = sha256;
13   };
14   inherit (buildGoModule.go) GOOS GOARCH;
16   meta = with lib; {
17     description = "CLI for sending individual events to honeycomb.io";
18     homepage = "https://honeycomb.io/";
19     license = licenses.asl20;
20     maintainers = [ maintainers.iand675 ];
21   };