honeymarker: init at 0.2.1
This commit is contained in:
parent
3db1a83518
commit
a7e766f121
21
pkgs/servers/tracing/honeycomb/honeymarker/default.nix
Normal file
21
pkgs/servers/tracing/honeycomb/honeymarker/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ lib, buildGoModule, fetchurl }:
|
||||
import ./versions.nix ({version, sha256}:
|
||||
buildGoModule {
|
||||
pname = "honeymarker";
|
||||
inherit version;
|
||||
vendorSha256 = "sha256-ZuDobjC/nizZ7G0o/zVTQmDfDjcdBhfPcmkhgwFc7VU=";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/honeycombio/honeymarker/archive/refs/tags/v${version}.tar.gz";
|
||||
inherit sha256;
|
||||
};
|
||||
inherit (buildGoModule.go) GOOS GOARCH;
|
||||
|
||||
meta = with lib; {
|
||||
description = "provides a simple CRUD interface for dealing with per-dataset markers on honeycomb.io";
|
||||
homepage = "https://honeycomb.io/";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.iand675 ];
|
||||
};
|
||||
})
|
||||
|
6
pkgs/servers/tracing/honeycomb/honeymarker/versions.nix
Normal file
6
pkgs/servers/tracing/honeycomb/honeymarker/versions.nix
Normal file
@ -0,0 +1,6 @@
|
||||
generic: {
|
||||
v0_2_1 = generic {
|
||||
version = "0.2.1";
|
||||
sha256 = "0gp427bsc1y7k6j1sqgl8r3kng5b0qhmqd4bpfb9139ivmp2sykk";
|
||||
};
|
||||
}
|
@ -34233,5 +34233,7 @@ with pkgs;
|
||||
|
||||
zthrottle = callPackage ../tools/misc/zthrottle { };
|
||||
|
||||
honeymarker = callPackage ../servers/tracing/honeycomb/honeymarker { };
|
||||
|
||||
honeytail = callPackage ../servers/tracing/honeycomb/honeytail { };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user