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

37 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoModule }:
2019-09-18 16:00:00 -07:00
buildGoModule rec {
pname = "circleci-cli";
2020-06-14 04:37:17 -07:00
version = "0.1.7971";
2019-09-18 16:00:00 -07:00
src = fetchFromGitHub {
owner = "CircleCI-Public";
repo = pname;
2018-07-22 07:17:34 -07:00
rev = "v${version}";
2020-06-14 04:37:17 -07:00
sha256 = "0nrmdql3h9jnfgmp8898c9v07f5h5r9dvabaqhk98r6a77g3rr98";
};
vendorSha256 = "0y35ps2pw9z7gi4z50byd1py87bf2jdvj7l7w2gxpppmhi83myc9";
2020-02-17 01:20:00 -08:00
buildFlagsArray = [ "-ldflags=-s -w -X github.com/CircleCI-Public/circleci-cli/version.Version=${version}" ];
2019-09-18 16:00:00 -07: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-13 21:11:16 -07:00
homepage = "https://circleci.com/";
};
}