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.

43 lines
1011 B
Nix
Raw Normal View History

{ buildGoModule
2022-08-26 22:10:11 +00:00
, fetchFromGitHub
, installShellFiles
, lib
, qovery-cli
, testers
2022-08-26 22:10:11 +00:00
}:
buildGoModule rec {
pname = "qovery-cli";
2022-10-25 03:50:01 +00:00
version = "0.46.4";
2022-08-26 22:10:11 +00:00
src = fetchFromGitHub {
owner = "Qovery";
repo = pname;
rev = "v${version}";
2022-10-25 03:50:01 +00:00
hash = "sha256-ROUMFpAgUmcKt7QG+Lfd3OipJQK8DLezvCxvev1yNlo=";
2022-08-26 22:10:11 +00:00
};
2022-08-31 20:23:03 +00:00
vendorSha256 = "sha256-4TY7/prMbvw5zVPJRoMLg7Omrxvh1HPGsdz1wqPn4uU=";
2022-08-26 22:10:11 +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";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}