2020-03-27 07:33:21 +00:00
|
|
|
{ stdenv, 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";
|
2020-08-15 10:21:00 +01:00
|
|
|
version = "0.1.9321";
|
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}";
|
2020-08-15 10:21:00 +01:00
|
|
|
sha256 = "0n0is4aradlx0jbzs819swidi2x1gnpca9f2b0lkxrxgqcm7viix";
|
2018-07-13 11:00:09 +01:00
|
|
|
};
|
|
|
|
|
2020-07-31 23:30:00 +01:00
|
|
|
vendorSha256 = "1zd95n9k2fags0qh3wvjinxv1ahygr958mmiax2kz117yipaz4rb";
|
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
|
|
|
|
|
|
|
meta = with stdenv.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 ];
|
|
|
|
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
|
|
|
}
|