mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
fd: install shell completions
This commit is contained in:
parent
67b4e7a4c0
commit
23705ce319
@ -16,6 +16,11 @@ rustPlatform.buildRustPackage rec {
|
|||||||
preFixup = ''
|
preFixup = ''
|
||||||
mkdir -p "$out/man/man1"
|
mkdir -p "$out/man/man1"
|
||||||
cp "$src/doc/fd.1" "$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; {
|
meta = with stdenv.lib; {
|
||||||
|
Loading…
Reference in New Issue
Block a user