1e3d6bb770
The archive hash has changed. See https://github.blog/changelog/2023-01-30-git-archive-checksums-may-change/
23 lines
639 B
Nix
23 lines
639 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
import ./versions.nix ({version, sha256}:
|
|
buildGoModule {
|
|
pname = "honeymarker";
|
|
inherit version;
|
|
vendorSha256 = "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 ];
|
|
};
|
|
})
|
|
|