mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
22 lines
552 B
Nix
22 lines
552 B
Nix
{ lib, buildGoModule, fetchurl }:
|
|
import ./versions.nix ({version, sha256}:
|
|
buildGoModule {
|
|
pname = "honeyvent";
|
|
inherit version;
|
|
vendorSha256 = null;
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/honeycombio/honeyvent/archive/refs/tags/v${version}.tar.gz";
|
|
inherit sha256;
|
|
};
|
|
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 ];
|
|
};
|
|
})
|
|
|