2022-12-14 16:34:24 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
2022-08-26 22:10:11 +00:00
|
|
|
, fetchFromGitHub
|
2022-09-05 07:00:24 +00:00
|
|
|
, installShellFiles
|
|
|
|
, qovery-cli
|
|
|
|
, testers
|
2022-08-26 22:10:11 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "qovery-cli";
|
2024-03-31 09:18:20 +00:00
|
|
|
version = "0.86.2";
|
2022-08-26 22:10:11 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Qovery";
|
2023-10-12 08:20:28 +00:00
|
|
|
repo = "qovery-cli";
|
2023-08-20 21:14:50 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-03-31 09:18:20 +00:00
|
|
|
hash = "sha256-AUrN5T6Z4T0WLsBwv/zXb9CSrwGCAV5nh+42MktRxvo=";
|
2022-08-26 22:10:11 +00:00
|
|
|
};
|
|
|
|
|
2024-03-31 09:18:20 +00:00
|
|
|
vendorHash = "sha256-Lwg3PFmSipaaYtu88c1qI/Ws50TQOqEu4mSuxcpx3zI=";
|
2022-08-26 22:10:11 +00:00
|
|
|
|
2023-10-12 08:20:28 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
installShellFiles
|
|
|
|
];
|
2022-09-05 07:00:24 +00:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|