2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchFromGitHub, buildGoModule }:
|
2018-07-13 11:00:09 +01:00
|
|
|
|
2019-09-19 00:00:00 +01:00
|
|
|
buildGoModule rec {
|
2018-07-13 11:00:09 +01:00
|
|
|
pname = "circleci-cli";
|
2021-03-10 19:03:19 +00:00
|
|
|
version = "0.1.15108";
|
2018-07-13 11:00:09 +01:00
|
|
|
|
2019-09-19 00:00:00 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "CircleCI-Public";
|
2018-09-20 22:54:11 +01:00
|
|
|
repo = pname;
|
2018-07-22 15:17:34 +01:00
|
|
|
rev = "v${version}";
|
2021-03-10 19:03:19 +00:00
|
|
|
sha256 = "sha256-r0GSv9JaQQkVLYDh51Rz6OIDTqV75RIT+NIWAFXWcV8=";
|
2018-07-13 11:00:09 +01:00
|
|
|
};
|
|
|
|
|
2021-03-04 13:35:16 +00:00
|
|
|
vendorSha256 = "sha256-j7VP/QKKMdmWQ60BYpChG4syDlll7CY4rb4wfb4+Z1s=";
|
2020-02-17 09:20:00 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2020-08-15 10:20:00 +01:00
|
|
|
buildFlagsArray = [ "-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-19 00:00:00 +01:00
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
substituteInPlace data/data.go \
|
|
|
|
--replace 'packr.New("circleci-cli-box", "../_data")' 'packr.New("circleci-cli-box", "${placeholder "out"}/share/circleci-cli")'
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
install -Dm644 -t $out/share/circleci-cli _data/data.yml
|
|
|
|
'';
|
2018-07-13 11:00:09 +01:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2018-07-13 11:00:09 +01:00
|
|
|
# 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 ];
|
|
|
|
license = licenses.mit;
|
2020-03-14 04:11:16 +00:00
|
|
|
homepage = "https://circleci.com/";
|
2018-07-13 11:00:09 +01:00
|
|
|
};
|
2020-06-19 06:30:34 +01:00
|
|
|
}
|