otel-cli: init at 0.0.20

Fixes #143471
Closes #143475
This commit is contained in:
Evan Mattiza 2021-10-28 19:42:51 +00:00 committed by Colin Arnott
parent 292ee77c81
commit 56a9ace933
No known key found for this signature in database
GPG Key ID: 0447A663F7F3E236
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ lib, bash, buildGoModule, fetchFromGitHub, getent, stdenv }:
buildGoModule rec {
pname = "otel-cli";
version = "0.0.20";
src = fetchFromGitHub {
owner = "equinix-labs";
repo = pname;
rev = "v${version}";
hash = "sha256-bWdkuw0uEE75l9YCo2Dq1NpWXuMH61RQ6p7m65P1QCE=";
};
vendorHash = "sha256-IJ2Gq5z1oNvcpWPh+BMs46VZMN1lHyE+M7kUinTSRr8=";
preCheck = ''
ln -s $GOPATH/bin/otel-cli .
'' + lib.optionalString (!stdenv.isDarwin) ''
substituteInPlace main_test.go \
--replace 'const minimumPath = `/bin:/usr/bin`' 'const minimumPath = `${lib.makeBinPath [ getent ]}`'
'';
meta = with lib; {
homepage = "https://github.com/equinix-labs/otel-cli";
description = "A command-line tool for sending OpenTelemetry traces";
changelog = "https://github.com/equinix-labs/otel-cli/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with lib.maintainers; [ emattiza urandom ];
};
}

View File

@ -10308,6 +10308,8 @@ with pkgs;
ostree = callPackage ../tools/misc/ostree { };
otel-cli = callPackage ../tools/misc/otel-cli {};
otfcc = callPackage ../tools/misc/otfcc { };
otpclient = callPackage ../applications/misc/otpclient { };