36 lines
1.0 KiB
Nix
36 lines
1.0 KiB
Nix
{ stdenv, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "circleci-cli";
|
|
version = "0.1.5879";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CircleCI-Public";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1471g56apaw0c5dpa0jrr7hvzh3kbwfr3yr0m4mz2dlf27d481ac";
|
|
};
|
|
|
|
modSha256 = "0cvmcsl00jfikpkw3f7k5zw65156z5g5l2b6s5803a2i9d613268";
|
|
|
|
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/;
|
|
};
|
|
}
|