Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
24 lines
669 B
Nix
24 lines
669 B
Nix
{
|
|
lib,
|
|
installShellFiles,
|
|
runCommandLocal,
|
|
}:
|
|
|
|
runCommandLocal "install-shell-files--install-completion-cmd"
|
|
{
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
meta.platforms = lib.platforms.all;
|
|
}
|
|
''
|
|
echo foo > foo.bash
|
|
echo bar > bar.zsh
|
|
echo baz > baz.fish
|
|
echo qux > qux.fish
|
|
|
|
installShellCompletion --cmd foobar --bash foo.bash --zsh bar.zsh --fish baz.fish --name qux qux.fish
|
|
|
|
cmp foo.bash $out/share/bash-completion/completions/foobar.bash
|
|
cmp bar.zsh $out/share/zsh/site-functions/_foobar
|
|
cmp baz.fish $out/share/fish/vendor_completions.d/foobar.fish
|
|
cmp qux.fish $out/share/fish/vendor_completions.d/qux
|
|
''
|