22017988c6
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
39 lines
1.3 KiB
Nix
39 lines
1.3 KiB
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "circleci-cli";
|
|
version = "0.1.17142";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CircleCI-Public";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-69GGJfnOHry+N3hKZapKz6eFSerqIHt4wRAhm/q/SOQ=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-7u2y1yBVpXf+D19tslD4s3B1KmABl4OWNzzLaBNL/2U=";
|
|
|
|
doCheck = false;
|
|
|
|
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" ];
|
|
|
|
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;
|
|
homepage = "https://circleci.com/";
|
|
};
|
|
}
|