metal-cli 0.19.0 -> 0.21.0 https://github.com/equinix/metal-cli/releases attrpath: metal-cli Checking auto update branch... An auto update branch exists with message `metal-cli: 0.19.0 -> 0.20.0`. New version is 0.21.0. The auto update branch does not match or exceed the new version. Old version 0.19.0" not present in master derivation file with contents: { lib , buildGoModule , fetchFromGitHub , installShellFiles }: buildGoModule rec { pname = "metal-cli"; version = "0.20.0"; src = fetchFromGitHub { owner = "equinix"; repo = pname; rev = "v${version}"; hash = "sha256-Y6zjEB7LKEb1CGQwNs8jAx1BFSw+EGwgXBMGyQUJhYc="; }; vendorHash = "sha256-FJ68j41Nb6KqiZPJE/u0TYDkXt43810Nx0p/JQDopn8="; ldflags = [ "-s" "-w" "-X github.com/equinix/metal-cli/cmd.Version=${version}" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion --cmd metal \ --bash <($out/bin/metal completion bash) \ --fish <($out/bin/metal completion fish) \ --zsh <($out/bin/metal completion zsh) ''; doCheck = false; doInstallCheck = true; installCheckPhase = '' $out/bin/metal --version | grep ${version} ''; meta = with lib; { description = "Official Equinix Metal CLI"; homepage = "https://github.com/equinix/metal-cli/"; changelog = "https://github.com/equinix/metal-cli/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ Br1ght0ne nshalman ]; mainProgram = "metal"; }; }