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.

44 lines
1.1 KiB
Nix
Raw Normal View History

2022-12-14 17:34:24 +01:00
{ lib
, buildGoModule
2022-08-27 00:10:11 +02:00
, fetchFromGitHub
, installShellFiles
, qovery-cli
, testers
2022-08-27 00:10:11 +02:00
}:
buildGoModule rec {
pname = "qovery-cli";
version = "0.49.0";
2022-08-27 00:10:11 +02:00
src = fetchFromGitHub {
owner = "Qovery";
repo = pname;
rev = "v${version}";
hash = "sha256-O5JUWD7Wbe/5BM5fr6z76Re7PpRwFJV++lze+pv5el0=";
2022-08-27 00:10:11 +02:00
};
vendorHash = "sha256-Hb4bqOK4h68ZCN/bTPQLd4hC7oZUrj21DupVA4GrlNA=";
2022-08-27 00:10:11 +02: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-27 00:10:11 +02:00
meta = with lib; {
description = "Qovery Command Line Interface";
homepage = "https://github.com/Qovery/qovery-cli";
2022-12-14 17:34:24 +01:00
changelog = "https://github.com/Qovery/qovery-cli/releases/tag/v${version}";
2022-08-27 00:10:11 +02:00
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}