Merge pull request #203582 from urandom2/otel-cli

Fixes https://github.com/NixOS/nixpkgs/issues/143471
Closes https://github.com/NixOS/nixpkgs/pull/143475
This commit is contained in:
Sandro 2022-12-27 21:25:07 +01:00 committed by GitHub
commit 375851e5cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 38 additions and 0 deletions

View File

@ -4151,6 +4151,12 @@
githubId = 1365692;
name = "Will Fancher";
};
emattiza = {
email = "nix@mattiza.dev";
github = "emattiza";
githubId = 11719476;
name = "Evan Mattiza";
};
emmabastas = {
email = "emma.bastas@protonmail.com";
matrix = "@emmabastas:matrix.org";

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

@ -10346,6 +10346,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 { };