otel-cli: 0.0.20 -> 0.1.0

This commit is contained in:
emattiza 2023-02-02 13:28:38 -06:00
parent a100acd7bb
commit 9dafc0d27e

View file

@ -1,17 +1,17 @@
{ lib, bash, buildGoModule, fetchFromGitHub, getent, stdenv }:
{ lib, bash, buildGoModule, fetchFromGitHub, getent, nix-update-script, stdenv }:
buildGoModule rec {
pname = "otel-cli";
version = "0.0.20";
version = "0.1.0";
src = fetchFromGitHub {
owner = "equinix-labs";
repo = pname;
rev = "v${version}";
hash = "sha256-bWdkuw0uEE75l9YCo2Dq1NpWXuMH61RQ6p7m65P1QCE=";
hash = "sha256-iYlyokBAS5KQUYq83zhKWH/Vulq7prQdceFpeBJN2PI=";
};
vendorHash = "sha256-IJ2Gq5z1oNvcpWPh+BMs46VZMN1lHyE+M7kUinTSRr8=";
vendorHash = "sha256-5c5uDp5KVo/DYAM5F76ivtT52+lNBheVmjAjmq6EJFk=";
preCheck = ''
ln -s $GOPATH/bin/otel-cli .
@ -20,6 +20,8 @@ buildGoModule rec {
--replace 'const minimumPath = `/bin:/usr/bin`' 'const minimumPath = `${lib.makeBinPath [ getent ]}`'
'';
passthru.updateScript = nix-update-script {};
meta = with lib; {
homepage = "https://github.com/equinix-labs/otel-cli";
description = "A command-line tool for sending OpenTelemetry traces";