2019-07-10 18:36:06 +02:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, }:
|
2016-06-02 21:21:45 +02:00
|
|
|
|
2019-07-10 18:36:06 +02:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fzf";
|
2019-12-21 04:30:39 +01:00
|
|
|
version = "0.20.0";
|
2016-06-02 21:21:45 +02:00
|
|
|
|
2016-06-06 12:26:56 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "junegunn";
|
2019-07-10 18:36:06 +02:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2019-12-21 04:30:39 +01:00
|
|
|
sha256 = "02zy3c4k84rzqdkaf04idbj10v286hi0ix1xl2qsz1wrblh168w8";
|
2016-06-02 21:21:45 +02:00
|
|
|
};
|
|
|
|
|
2019-12-03 19:18:33 +01:00
|
|
|
modSha256 = "12lnv8b96adpcg9qfizcyd9nxz590nxd82xch6ij719zlqyps143";
|
2019-07-10 18:36:06 +02:00
|
|
|
|
|
|
|
outputs = [ "out" "man" ];
|
2017-01-06 10:27:35 +01:00
|
|
|
|
2017-04-04 01:30:08 +02:00
|
|
|
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
|
|
|
|
|
2016-06-02 21:21:45 +02:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
patchPhase = ''
|
2018-05-07 05:42:05 +02:00
|
|
|
sed -i -e "s|expand('<sfile>:h:h')|'$bin'|" plugin/fzf.vim
|
|
|
|
|
|
|
|
# Original and output files can't be the same
|
|
|
|
if cmp -s $src/plugin/fzf.vim plugin/fzf.vim; then
|
|
|
|
echo "Vim plugin patch not applied properly. Aborting" && \
|
|
|
|
exit 1
|
|
|
|
fi
|
2016-06-02 21:21:45 +02:00
|
|
|
'';
|
|
|
|
|
2017-04-04 01:30:08 +02:00
|
|
|
preInstall = ''
|
2019-07-10 18:36:06 +02:00
|
|
|
mkdir -p $out/share/fish/{vendor_functions.d,vendor_conf.d}
|
|
|
|
cp $src/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
|
2017-04-04 01:30:08 +02:00
|
|
|
'';
|
|
|
|
|
2016-09-14 22:29:08 +02:00
|
|
|
postInstall = ''
|
2019-07-10 18:36:06 +02:00
|
|
|
cp $src/bin/fzf-tmux $out/bin
|
|
|
|
|
2017-01-06 10:27:35 +01:00
|
|
|
mkdir -p $man/share/man
|
|
|
|
cp -r $src/man/man1 $man/share/man
|
2017-07-28 11:42:28 +02:00
|
|
|
|
2019-11-28 14:54:24 +01:00
|
|
|
mkdir -p $out/share/vim-plugins/${pname}
|
|
|
|
cp -r $src/plugin $out/share/vim-plugins/${pname}
|
2019-07-10 18:36:06 +02:00
|
|
|
|
|
|
|
cp -R $src/shell $out/share/fzf
|
|
|
|
cat <<SCRIPT > $out/bin/fzf-share
|
2019-02-26 12:45:54 +01:00
|
|
|
#!${runtimeShell}
|
2017-07-28 11:42:28 +02:00
|
|
|
# Run this script to find the fzf shared folder where all the shell
|
|
|
|
# integration scripts are living.
|
2019-07-10 18:36:06 +02:00
|
|
|
echo $out/share/fzf
|
2017-07-28 11:42:28 +02:00
|
|
|
SCRIPT
|
2019-07-10 18:36:06 +02:00
|
|
|
chmod +x $out/bin/fzf-share
|
2016-06-02 21:21:45 +02:00
|
|
|
'';
|
2016-07-18 06:36:35 +02:00
|
|
|
|
2019-07-10 18:36:06 +02:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/junegunn/fzf";
|
2016-07-18 06:36:35 +02:00
|
|
|
description = "A command-line fuzzy finder written in Go";
|
|
|
|
license = licenses.mit;
|
2019-12-26 15:13:48 +01:00
|
|
|
maintainers = with maintainers; [ filalex77 ma27 ];
|
2016-07-18 06:36:35 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2016-06-02 21:21:45 +02:00
|
|
|
}
|