goverview: install shell completion files

This commit is contained in:
Doron Behar 2023-12-25 16:11:38 +02:00
parent 4fa6181085
commit 1b807b609b

View File

@ -1,6 +1,7 @@
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
@ -20,6 +21,15 @@ buildGoModule rec {
"-w"
"-s"
];
nativeBuildInputs = [
installShellFiles
];
postInstall = ''
installShellCompletion --cmd goverview \
--bash <($out/bin/goverview completion bash) \
--fish <($out/bin/goverview completion fish) \
--zsh <($out/bin/goverview completion zsh)
'';
# Tests require network access
doCheck = false;