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

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

24 lines
548 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2022-01-07 16:34:26 +00:00
import ./versions.nix ({version, sha256}:
buildGoModule {
pname = "honeyvent";
inherit version;
vendorHash = null;
2022-01-07 16:34:26 +00:00
src = fetchFromGitHub {
owner = "honeycombio";
repo = "honeyvent";
rev = "v${version}";
hash = sha256;
2022-01-07 16:34:26 +00:00
};
inherit (buildGoModule.go) GOOS GOARCH;
meta = with lib; {
description = "CLI for sending individual events to honeycomb.io";
homepage = "https://honeycomb.io/";
license = licenses.asl20;
maintainers = [ maintainers.iand675 ];
};
})