2022-12-03T11:04:10 circleci-cli 0.1.22426 -> 0.1.22675 https://repology.org/metapackage/circleci-cli/versions 2022-12-03T11:04:12 attrpath: circleci-cli 2022-12-03T11:04:12 Checking auto update branch... 2022-12-03T11:04:12 An auto update branch exists with message `circleci-cli: 0.1.22426 -> 0.1.22675`. New version is 0.1.22675. 2022-12-03T11:04:12 An auto update branch exists with an equal or greater version 2022-12-03T20:04:43 circleci-cli 0.1.22426 -> 0.1.22675 https://github.com/CircleCI-Public/circleci-cli/releases 2022-12-03T20:04:45 attrpath: circleci-cli 2022-12-03T20:04:45 Checking auto update branch... 2022-12-03T20:04:45 No auto update branch exists 2022-12-03T20:04:46 Old version 0.1.22426" not present in master derivation file with contents: { lib, fetchFromGitHub, buildGoModule, installShellFiles }: buildGoModule rec { pname = "circleci-cli"; version = "0.1.22675"; src = fetchFromGitHub { owner = "CircleCI-Public"; repo = pname; rev = "v${version}"; sha256 = "sha256-yCjCsUxl2IUIsiHBlqdNLtjbr+wNn6BpssD3+EHsHKA="; }; vendorSha256 = "sha256-tTG2i6ZEck0arKfCiFK7pGg9SE4n7FrF16US67Wj1gY="; nativeBuildInputs = [ installShellFiles ]; doCheck = false; ldflags = [ "-s" "-w" "-X github.com/CircleCI-Public/circleci-cli/version.Version=${version}" "-X github.com/CircleCI-Public/circleci-cli/version.Commit=${src.rev}" "-X github.com/CircleCI-Public/circleci-cli/version.packageManager=nix" ]; postInstall = '' mv $out/bin/circleci-cli $out/bin/circleci installShellCompletion --cmd circleci \ --bash <(HOME=$TMPDIR $out/bin/circleci completion bash --skip-update-check) \ --zsh <(HOME=$TMPDIR $out/bin/circleci completion zsh --skip-update-check) ''; meta = with lib; { # Box blurb edited from the AUR package circleci-cli description = '' Command to enable you to reproduce the CircleCI environment locally and run jobs as if they were running on the hosted CirleCI application. ''; maintainers = with maintainers; [ synthetica ]; mainProgram = "circleci"; license = licenses.mit; homepage = "https://circleci.com/"; }; }