mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
fzf: cleanup
- use installShellFiles - mkdir;cp -> install - unify shell completion installation
This commit is contained in:
parent
8149fc8438
commit
123cdd4990
@ -1,5 +1,12 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, perl }:
|
||||
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, writeText
|
||||
, runtimeShell
|
||||
, installShellFiles
|
||||
, ncurses
|
||||
, perl
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "fzf";
|
||||
version = "0.35.1";
|
||||
@ -15,7 +22,7 @@ buildGoModule rec {
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
|
||||
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
buildInputs = [ ncurses ];
|
||||
|
||||
@ -38,22 +45,19 @@ buildGoModule rec {
|
||||
--replace " perl -n " " ${perl}/bin/perl -n "
|
||||
'';
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/share/fish/{vendor_functions.d,vendor_conf.d}
|
||||
cp shell/key-bindings.fish $out/share/fish/vendor_functions.d/fzf_key_bindings.fish
|
||||
cp ${fishHook} $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
cp bin/fzf-tmux $out/bin
|
||||
install bin/fzf-tmux $out/bin
|
||||
|
||||
mkdir -p $man/share/man
|
||||
cp -r man/man1 $man/share/man
|
||||
installManPage man/man1/fzf.1 man/man1/fzf-tmux.1
|
||||
|
||||
mkdir -p $out/share/vim-plugins/${pname}
|
||||
cp -r plugin $out/share/vim-plugins/${pname}
|
||||
install -D plugin/* -t $out/share/vim-plugins/${pname}/plugin
|
||||
|
||||
# Install shell integrations
|
||||
install -D shell/* -t $out/share/fzf/
|
||||
install -D shell/key-bindings.fish $out/share/fish/vendor_functions.d/fzf_key_bindings.fish
|
||||
mkdir -p $out/share/fish/vendor_conf.d
|
||||
echo fzf_key_bindings > $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
|
||||
|
||||
cp -R shell $out/share/fzf
|
||||
cat <<SCRIPT > $out/bin/fzf-share
|
||||
#!${runtimeShell}
|
||||
# Run this script to find the fzf shared folder where all the shell
|
||||
|
Loading…
Reference in New Issue
Block a user