nixpkgs/pkgs/development/tools/misc/circleci-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.4 KiB
Nix
Raw Normal View History

2022-09-14 20:29:41 +00:00
{ lib, fetchFromGitHub, buildGoModule, installShellFiles }:
2019-09-18 23:00:00 +00:00
buildGoModule rec {
pname = "circleci-cli";
2022-12-25 12:58:40 +00:00
version = "0.1.22924";
2019-09-18 23:00:00 +00:00
src = fetchFromGitHub {
owner = "CircleCI-Public";
repo = pname;
2018-07-22 14:17:34 +00:00
rev = "v${version}";
2022-12-25 12:58:40 +00:00
sha256 = "sha256-zfkvSfwjh3HUE0aKvBLQuNnT+GBWCOWM+mwrAdZUJ9U=";
};
2022-12-25 12:58:40 +00:00
vendorSha256 = "sha256-qnn55C9ZK80gd/ZOtPvAGNJs0d96KqwruU4bZD6TQzY=";
2020-02-17 09:20:00 +00:00
2022-09-14 20:29:41 +00:00
nativeBuildInputs = [ installShellFiles ];
doCheck = false;
2021-08-26 06:45:51 +00:00
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" ];
2019-09-18 23:00:00 +00:00
postInstall = ''
mv $out/bin/circleci-cli $out/bin/circleci
2022-09-14 20:29:41 +00:00
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;
2020-03-14 04:11:16 +00:00
homepage = "https://circleci.com/";
};
}