about summary refs log tree commit diff
path: root/pkgs/servers/tracing/honeycomb/honeymarker/default.nix
blob: ab059b518e745439e0c90558219c31c1b0e7db2f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ];
  };
})