nixpkgs/pkgs/tools/admin/qovery-cli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.1 KiB
Nix
Raw Normal View History

2024-04-10 20:13:35 +00:00
{
lib,
buildGoModule,
fetchFromGitHub,
installShellFiles,
qovery-cli,
testers,
2022-08-26 22:10:11 +00:00
}:
buildGoModule rec {
pname = "qovery-cli";
2024-04-10 14:34:53 +00:00
version = "0.87.0";
2022-08-26 22:10:11 +00:00
src = fetchFromGitHub {
owner = "Qovery";
repo = "qovery-cli";
rev = "refs/tags/v${version}";
2024-04-10 14:34:53 +00:00
hash = "sha256-JUyhVq3xMPV9s4OCfkKgCnSMjztYDPJgS4A+jJOZofE=";
2022-08-26 22:10:11 +00:00
};
vendorHash = "sha256-Lwg3PFmSipaaYtu88c1qI/Ws50TQOqEu4mSuxcpx3zI=";
2022-08-26 22:10:11 +00:00
2024-04-10 20:13:35 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd ${pname} \
--bash <($out/bin/${pname} completion bash) \
--fish <($out/bin/${pname} completion fish) \
--zsh <($out/bin/${pname} completion zsh)
'';
passthru.tests.version = testers.testVersion {
package = qovery-cli;
command = "HOME=$(mktemp -d); ${pname} version";
};
2022-08-26 22:10:11 +00:00
meta = with lib; {
description = "Qovery Command Line Interface";
homepage = "https://github.com/Qovery/qovery-cli";
2022-12-14 16:34:24 +00:00
changelog = "https://github.com/Qovery/qovery-cli/releases/tag/v${version}";
2022-08-26 22:10:11 +00:00
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
2024-02-11 02:19:15 +00:00
mainProgram = "qovery-cli";
2022-08-26 22:10:11 +00:00
};
}