mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
7a445c511a
Diff: https://github.com/Qovery/qovery-cli/compare/refs/tags/v0.84.0...v0.84.1 Changelog: https://github.com/Qovery/qovery-cli/releases/tag/v0.84.1
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, qovery-cli
|
|
, testers
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "qovery-cli";
|
|
version = "0.84.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Qovery";
|
|
repo = "qovery-cli";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-Dq62LXa0hZrpfQ7WQuCelLxWS7Lhn6SH61cNTsYI/mw=";
|
|
};
|
|
|
|
vendorHash = "sha256-XG0dOEpu+NoQmklsukxev1gc2OsZc7fLEkv0AGwkh7o=";
|
|
|
|
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 ];
|
|
mainProgram = "qovery-cli";
|
|
};
|
|
}
|