Merge pull request #330634 from r-ryantm/auto-update/circumflex
[NixPkgs.git] / pkgs / servers / tracing / honeycomb / honeymarker / default.nix
blob9691d08b871077e6e7193dd0077df2d2355a48fb
1 { lib, buildGoModule, fetchFromGitHub }:
2 import ./versions.nix ({version, sha256}:
3   buildGoModule {
4   pname = "honeymarker";
5   inherit version;
6   vendorHash = "sha256-ZuDobjC/nizZ7G0o/zVTQmDfDjcdBhfPcmkhgwFc7VU=";
8   src = fetchFromGitHub {
9     owner = "honeycombio";
10     repo = "honeymarker";
11     rev = "v${version}";
12     hash = sha256;
13   };
14   inherit (buildGoModule.go) GOOS GOARCH;
16   meta = with lib; {
17     description = "provides a simple CRUD interface for dealing with per-dataset markers on honeycomb.io";
18     homepage = "https://honeycomb.io/";
19     license = licenses.asl20;
20     maintainers = [ maintainers.iand675 ];
21   };