zitadel-tools: add tab-completions

This commit is contained in:
Janik H. 2023-10-24 19:57:08 +02:00
parent 7b035d5c62
commit 13dd75b001
No known key found for this signature in database

View file

@ -1,6 +1,7 @@
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
@ -14,6 +15,8 @@ buildGoModule rec {
hash = "sha256-r9GEHpfDlpK98/dnsxjhUgWKn6vHQla8Z+jQUVrHGyo=";
};
nativeBuildInputs = [ installShellFiles ];
vendorHash = "sha256-y2PYj0XRSgfiaYpeqAh4VR/+NKUPKd1c0w9pPCWsUrY=";
ldflags = [
@ -21,6 +24,14 @@ buildGoModule rec {
"-X main.version=${version}"
];
postInstall = ''
local INSTALL="$out/bin/zitadel-tools"
installShellCompletion --cmd zitadel-tools \
--bash <($out/bin/zitadel-tools completion bash) \
--fish <($out/bin/zitadel-tools completion fish) \
--zsh <($out/bin/zitadel-tools completion zsh)
'';
meta = with lib; {
description = "Helper tools for zitadel";
homepage = "https://github.com/zitadel/zitadel-tools";