Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
23 lines
637 B
Nix
23 lines
637 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
import ./versions.nix ({version, sha256}:
|
|
buildGoModule {
|
|
pname = "honeymarker";
|
|
inherit version;
|
|
vendorHash = "sha256-ZuDobjC/nizZ7G0o/zVTQmDfDjcdBhfPcmkhgwFc7VU=";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "honeycombio";
|
|
repo = "honeymarker";
|
|
rev = "v${version}";
|
|
hash = 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 ];
|
|
};
|
|
})
|
|
|