{ 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/"; }; }