Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "circleci-cli";
|
|
version = "0.1.33494";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CircleCI-Public";
|
|
repo = "circleci-cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-MxNSUMxB3ZVHUQzpy9cVAgOs9qULUAv+/LAcBcnfFEs=";
|
|
};
|
|
|
|
vendorHash = "sha256-G/cMhaVDxxx1oT8T6N8GzIu3FAKSVORwHlcThL6jS1c=";
|
|
|
|
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/";
|
|
};
|
|
}
|