forked from mirrors/nixpkgs
honeyvent: init at 1.1.0
This commit is contained in:
parent
a7e766f121
commit
32c717749c
21
pkgs/servers/tracing/honeycomb/honeyvent/default.nix
Normal file
21
pkgs/servers/tracing/honeycomb/honeyvent/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ lib, buildGoModule, fetchurl }:
|
||||
import ./versions.nix ({version, sha256}:
|
||||
buildGoModule {
|
||||
pname = "honeyvent";
|
||||
inherit version;
|
||||
vendorSha256 = null;
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/honeycombio/honeyvent/archive/refs/tags/v${version}.tar.gz";
|
||||
inherit sha256;
|
||||
};
|
||||
inherit (buildGoModule.go) GOOS GOARCH;
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI for sending individual events to honeycomb.io";
|
||||
homepage = "https://honeycomb.io/";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.iand675 ];
|
||||
};
|
||||
})
|
||||
|
6
pkgs/servers/tracing/honeycomb/honeyvent/versions.nix
Normal file
6
pkgs/servers/tracing/honeycomb/honeyvent/versions.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
generic: {
|
||||
v1_1_0 = generic {
|
||||
version = "1.1.0";
|
||||
sha256 = "0ar2m25ngdd1wk7d70j2781wbrvhjhf9cj9qvp24jjrhqng6hvn7";
|
||||
};
|
||||
}
|
|
@ -34236,4 +34236,6 @@ with pkgs;
|
|||
honeymarker = callPackage ../servers/tracing/honeycomb/honeymarker { };
|
||||
|
||||
honeytail = callPackage ../servers/tracing/honeycomb/honeytail { };
|
||||
|
||||
honeyvent = callPackage ../servers/tracing/honeycomb/honeyvent { };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue