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

40 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-09-19 00:00:00 +01:00
buildGoModule rec {
pname = "circleci-cli";
2021-03-10 19:03:19 +00:00
version = "0.1.15108";
2019-09-19 00:00:00 +01:00
src = fetchFromGitHub {
owner = "CircleCI-Public";
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=";
};
2021-03-04 13:35:16 +00:00
vendorSha256 = "sha256-j7VP/QKKMdmWQ60BYpChG4syDlll7CY4rb4wfb4+Z1s=";
2020-02-17 09:20:00 +00: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
'';
meta = with 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/";
};
}