mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
53 lines
1.2 KiB
Nix
53 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "civo";
|
|
version = "1.0.89";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "civo";
|
|
repo = "cli";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-hX/tmeQYcTDs3JZSFhvzCrcbqvfa78MXtTo8VcuAqxY=";
|
|
};
|
|
|
|
vendorHash = "sha256-bwmJnKxdvVskrrTCa0cdpiYeFVZWTYyaFNEbeymT7P0=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
CGO_ENABLED = 0;
|
|
|
|
# Some lint checks fail
|
|
doCheck = false;
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-X github.com/civo/cli/common.VersionCli=${version}"
|
|
"-X github.com/civo/cli/common.CommitCli=${src.rev}"
|
|
"-X github.com/civo/cli/common.DateCli=unknown"
|
|
];
|
|
|
|
doInstallCheck = false;
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cli $out/bin/civo
|
|
installShellCompletion --cmd civo \
|
|
--bash <($out/bin/civo completion bash) \
|
|
--fish <($out/bin/civo completion fish) \
|
|
--zsh <($out/bin/civo completion zsh)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "CLI for interacting with Civo resources";
|
|
mainProgram = "civo";
|
|
homepage = "https://github.com/civo/cli";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ techknowlogick ];
|
|
};
|
|
}
|