flake: install shell completions for mcrctl

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-27 21:41:30 -07:00
parent a69ed648f9
commit f51e5edca0

View File

@@ -27,6 +27,14 @@
"-w"
"-X main.version=${version}"
];
postInstall = ''
mkdir -p $out/share/zsh/site-functions
mkdir -p $out/share/bash-completion/completions
mkdir -p $out/share/fish/vendor_completions.d
$out/bin/mcrctl completion zsh > $out/share/zsh/site-functions/_mcrctl
$out/bin/mcrctl completion bash > $out/share/bash-completion/completions/mcrctl
$out/bin/mcrctl completion fish > $out/share/fish/vendor_completions.d/mcrctl.fish
'';
};
};
};