From aab01f1797fb67b64dbbc9651e9d4be63120c048 Mon Sep 17 00:00:00 2001 From: emattiza Date: Sat, 27 May 2023 19:34:46 -0500 Subject: [PATCH] update: otel-cli 0.2.0 -> 0.3.0 updates otel-cli from 0.2.0 to 0.3.0 see https://github.com/equinix-labs/otel-cli/releases/tag/v0.3.0 for changelog and release details --- pkgs/tools/misc/otel-cli/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/otel-cli/default.nix b/pkgs/tools/misc/otel-cli/default.nix index b9efcd250286..992dd9c71d16 100644 --- a/pkgs/tools/misc/otel-cli/default.nix +++ b/pkgs/tools/misc/otel-cli/default.nix @@ -1,23 +1,23 @@ -{ lib, bash, buildGoModule, fetchFromGitHub, getent, nix-update-script, stdenv }: +{ lib, bash, buildGoModule, fetchFromGitHub, getent, coreutils, nix-update-script, stdenv }: buildGoModule rec { pname = "otel-cli"; - version = "0.2.0"; + version = "0.3.0"; src = fetchFromGitHub { owner = "equinix-labs"; repo = pname; rev = "v${version}"; - hash = "sha256-hez/jHet7W4FnOjgLb0jE1FhoNimiLGaOuTI44UWbSA="; + hash = "sha256-edxDPxUamZiBezMj2SII/zq8atnyZVWtboUJsShDAyw="; }; - vendorHash = "sha256-gVRgqBgiFnPU6MRZi/Igs7nDPMwJYsdln7vPAcxTvPU="; + vendorHash = "sha256-MlLFTi+O925NA73zDRrk0AgJzwtdNBhCxDjmniNPwio="; 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 ]}`' + --replace 'const minimumPath = `/bin:/usr/bin`' 'const minimumPath = `${lib.makeBinPath [ getent coreutils ]}`' ''; passthru.updateScript = nix-update-script {};