Merge pull request #31735 from dywedir/fd

fd: install shell completions
This commit is contained in:
Orivej Desh 2017-11-16 20:50:37 +00:00 committed by GitHub
commit e7521b2064
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,11 @@ rustPlatform.buildRustPackage rec {
preFixup = ''
mkdir -p "$out/man/man1"
cp "$src/doc/fd.1" "$out/man/man1"
mkdir -p "$out/share/"{bash-completion/completions,fish/completions,zsh/site-functions}
cp target/release/build/fd-find-*/out/fd.bash-completion "$out/share/bash-completion/completions/"
cp target/release/build/fd-find-*/out/fd.fish "$out/share/fish/completions/"
cp target/release/build/fd-find-*/out/_fd "$out/share/zsh/site-functions/"
'';
meta = with stdenv.lib; {