Skip to content

Commit

Permalink
circleci-cli: Rename executable to circleci
Browse files Browse the repository at this point in the history
This is the official name of the tool, so it matches the docs and usages out there.
  • Loading branch information
avdv committed Sep 14, 2022
1 parent 4f293b2 commit 2eeaffd
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkgs/development/tools/misc/circleci-cli/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,18 @@ buildGoModule rec {

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
'';

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/";
};
Expand Down

0 comments on commit 2eeaffd

Please sign in to comment.