forked from mirrors/nixpkgs
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:
commit
375851e5cf
3 changed files with 38 additions and 0 deletions
|
@ -4151,6 +4151,12 @@
|
||||||
githubId = 1365692;
|
githubId = 1365692;
|
||||||
name = "Will Fancher";
|
name = "Will Fancher";
|
||||||
};
|
};
|
||||||
|
emattiza = {
|
||||||
|
email = "nix@mattiza.dev";
|
||||||
|
github = "emattiza";
|
||||||
|
githubId = 11719476;
|
||||||
|
name = "Evan Mattiza";
|
||||||
|
};
|
||||||
emmabastas = {
|
emmabastas = {
|
||||||
email = "emma.bastas@protonmail.com";
|
email = "emma.bastas@protonmail.com";
|
||||||
matrix = "@emmabastas:matrix.org";
|
matrix = "@emmabastas:matrix.org";
|
||||||
|
|
30
pkgs/tools/misc/otel-cli/default.nix
Normal file
30
pkgs/tools/misc/otel-cli/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -10346,6 +10346,8 @@ with pkgs;
|
||||||
|
|
||||||
ostree = callPackage ../tools/misc/ostree { };
|
ostree = callPackage ../tools/misc/ostree { };
|
||||||
|
|
||||||
|
otel-cli = callPackage ../tools/misc/otel-cli {};
|
||||||
|
|
||||||
otfcc = callPackage ../tools/misc/otfcc { };
|
otfcc = callPackage ../tools/misc/otfcc { };
|
||||||
|
|
||||||
otpclient = callPackage ../applications/misc/otpclient { };
|
otpclient = callPackage ../applications/misc/otpclient { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue