dae973cb59
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, qovery-cli
|
|
, testers
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "qovery-cli";
|
|
version = "0.50.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Qovery";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-kvIY6BBkyV5TmpT8bhrn+OIP3/rbCy0EKxsFLIIFp8U=";
|
|
};
|
|
|
|
vendorHash = "sha256-595Z6/jt+d81QMIKcbg7Y5UMtF8hnZipiBkt1LQt2AI=";
|
|
|
|
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";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Qovery Command Line Interface";
|
|
homepage = "https://github.com/Qovery/qovery-cli";
|
|
changelog = "https://github.com/Qovery/qovery-cli/releases/tag/v${version}";
|
|
license = with licenses; [ asl20 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|