nixpkgs/pkgs/servers/tracing/honeycomb/honeymarker/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
637 B
Nix
Raw Permalink Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2022-01-07 16:33:31 +00:00
import ./versions.nix ({version, sha256}:
buildGoModule {
pname = "honeymarker";
inherit version;
vendorHash = "sha256-ZuDobjC/nizZ7G0o/zVTQmDfDjcdBhfPcmkhgwFc7VU=";
2022-01-07 16:33:31 +00:00
src = fetchFromGitHub {
owner = "honeycombio";
repo = "honeymarker";
rev = "v${version}";
hash = sha256;
2022-01-07 16:33:31 +00:00
};
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 ];
};
})