b450903751
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
30 lines
1,010 B
Nix
30 lines
1,010 B
Nix
{ lib, fetchFromGitHub, buildGoModule }:
|
|
|
|
buildGoModule rec {
|
|
pname = "circleci-cli";
|
|
version = "0.1.20856";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "CircleCI-Public";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-lYePUN4z/Oz9UXjxyrkG8jBMRwZopU9Jzw/mMMTs+oo=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-jrAd1G/NCjXfaJmzOhMjMZfJoGHsQ1bi3HudBM0e8rE=";
|
|
|
|
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" ];
|
|
|
|
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/";
|
|
};
|
|
}
|