2020-03-27 07:33:21 +00:00
|
|
|
{ stdenv, fetchFromGitHub, buildGoModule }:
|
2018-07-13 12:00:09 +02:00
|
|
|
|
2019-09-18 18:00:00 -05:00
|
|
|
buildGoModule rec {
|
2018-07-13 12:00:09 +02:00
|
|
|
pname = "circleci-cli";
|
2020-05-24 18:15:42 +00:00
|
|
|
version = "0.1.7868";
|
2018-07-13 12:00:09 +02:00
|
|
|
|
2019-09-18 18:00:00 -05:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "CircleCI-Public";
|
2018-09-20 23:54:11 +02:00
|
|
|
repo = pname;
|
2018-07-22 16:17:34 +02:00
|
|
|
rev = "v${version}";
|
2020-05-24 18:15:42 +00:00
|
|
|
sha256 = "1a9gnqrkvifrwr8wpv5f6zv8xs8myzbzlhn5w72xxzh2gxdaflwg";
|
2018-07-13 12:00:09 +02:00
|
|
|
};
|
|
|
|
|
2020-04-30 21:59:00 -04:00
|
|
|
vendorSha256 = "0y35ps2pw9z7gi4z50byd1py87bf2jdvj7l7w2gxpppmhi83myc9";
|
2020-02-17 04:20:00 -05:00
|
|
|
|
|
|
|
buildFlagsArray = [ "-ldflags=-s -w -X github.com/CircleCI-Public/circleci-cli/version.Version=${version}" ];
|
2019-09-18 18:00:00 -05: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 12:00:09 +02: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 12:00:09 +02:00
|
|
|
};
|
2020-04-30 21:59:00 -04:00
|
|
|
}
|