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

40 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, fetchFromGitHub, buildGoModule }:
2019-09-18 23:00:00 +00:00
buildGoModule rec {
pname = "circleci-cli";
2021-08-15 02:26:38 +00:00
version = "0.1.15824";
2019-09-18 23:00:00 +00:00
src = fetchFromGitHub {
owner = "CircleCI-Public";
repo = pname;
2018-07-22 14:17:34 +00:00
rev = "v${version}";
2021-08-15 02:26:38 +00:00
sha256 = "sha256-bTRtzjIm5NI89O09hMyiDVL4skkfg1C8/92IEDaIAak=";
};
2021-08-08 08:55:26 +00:00
vendorSha256 = "sha256-VOPXM062CZ6a6CJGzYTHav1OkyiH7XUHXWrRdGekaGQ=";
2020-02-17 09:20:00 +00:00
doCheck = false;
2021-08-26 06:45:51 +00:00
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-18 23:00:00 +00: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/";
};
}