{ lib , buildGoModule , fetchFromGitHub , installShellFiles , qovery-cli , testers }: buildGoModule rec { pname = "qovery-cli"; version = "0.47.2"; src = fetchFromGitHub { owner = "Qovery"; repo = pname; rev = "v${version}"; hash = "sha256-leQ/wMtFt4e+NaLYPA50BICLJV7tBJ7NcaaYagbG+Ww="; }; vendorHash = "sha256-fkVtyydWPLh0D8jJZQ02hc8Hzntfmd7UMOuTv4Rckng="; 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 ]; }; }