40 lines
1.2 KiB
Nix
Raw Normal View History

2020-03-21 04:33:00 -05:00
{ stdenv, fetchFromGitHub, buildGoModule, Security }:
2019-09-18 18:00:00 -05:00
buildGoModule rec {
pname = "circleci-cli";
2020-03-14 04:11:16 +00:00
version = "0.1.6949";
2019-09-18 18:00:00 -05:00
src = fetchFromGitHub {
owner = "CircleCI-Public";
repo = pname;
2018-07-22 16:17:34 +02:00
rev = "v${version}";
2020-03-14 04:11:16 +00:00
sha256 = "0r64m4lcm9w0rzi61rsi3sm719ydwiv5axxnikwhzmvkdz0rd7dq";
};
2020-03-14 04:11:16 +00:00
modSha256 = "199ai38knp50mjjhddjd70qfwx63c69rf7ddw4hpzgx5cm5a04q2";
2020-02-17 04:20:00 -05:00
2020-03-21 04:33:00 -05:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
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
'';
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/";
};
}