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

38 lines
1.1 KiB
Nix
Raw Normal View History

2019-09-19 01:00:00 +02:00
{ stdenv, fetchFromGitHub, buildGoModule }:
2019-09-19 01:00:00 +02:00
buildGoModule rec {
pname = "circleci-cli";
2020-02-17 10:20:00 +01:00
version = "0.1.6072";
2019-09-19 01:00:00 +02:00
src = fetchFromGitHub {
owner = "CircleCI-Public";
repo = pname;
2018-07-22 16:17:34 +02:00
rev = "v${version}";
2020-02-17 10:20:00 +01:00
sha256 = "1sbzl6y7974sib14qr2qa6d20cs54h6a3mc1whbxifg87cw02qjn";
};
2020-02-17 10:20:00 +01:00
modSha256 = "1pxqc2a1hb6bk67sd2c37zwg6n7h0jay3yqsjcs4jc0bqv48gzip";
buildFlagsArray = [ "-ldflags=-s -w -X github.com/CircleCI-Public/circleci-cli/version.Version=${version}" ];
2019-09-19 01:00:00 +02: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;
homepage = https://circleci.com/;
};
}