nixpkgs/pkgs/tools/misc/fzf/default.nix

67 lines
1.8 KiB
Nix
Raw Normal View History

2019-07-10 16:36:06 +00:00
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, }:
2019-07-10 16:36:06 +00:00
buildGoModule rec {
pname = "fzf";
2019-12-21 03:30:39 +00:00
version = "0.20.0";
src = fetchFromGitHub {
owner = "junegunn";
2019-07-10 16:36:06 +00:00
repo = pname;
rev = version;
2019-12-21 03:30:39 +00:00
sha256 = "02zy3c4k84rzqdkaf04idbj10v286hi0ix1xl2qsz1wrblh168w8";
};
2019-12-03 18:18:33 +00:00
modSha256 = "12lnv8b96adpcg9qfizcyd9nxz590nxd82xch6ij719zlqyps143";
2019-07-10 16:36:06 +00:00
outputs = [ "out" "man" ];
2017-01-06 09:27:35 +00:00
2017-04-03 23:30:08 +00:00
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
buildInputs = [ ncurses ];
patchPhase = ''
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
'';
2017-04-03 23:30:08 +00:00
preInstall = ''
2019-07-10 16:36:06 +00: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-03 23:30:08 +00:00
'';
2016-09-14 20:29:08 +00:00
postInstall = ''
2019-07-10 16:36:06 +00:00
name="${pname}-${version}"
cp $src/bin/fzf-tmux $out/bin
2017-01-06 09:27:35 +00:00
mkdir -p $man/share/man
cp -r $src/man/man1 $man/share/man
2019-07-10 16:36:06 +00:00
mkdir -p $out/share/vim-plugins/$name
cp -r $src/plugin $out/share/vim-plugins/$name
cp -R $src/shell $out/share/fzf
cat <<SCRIPT > $out/bin/fzf-share
#!${runtimeShell}
# Run this script to find the fzf shared folder where all the shell
# integration scripts are living.
2019-07-10 16:36:06 +00:00
echo $out/share/fzf
SCRIPT
2019-07-10 16:36:06 +00:00
chmod +x $out/bin/fzf-share
'';
2016-07-18 04:36:35 +00:00
2019-07-10 16:36:06 +00:00
meta = with lib; {
homepage = "https://github.com/junegunn/fzf";
2016-07-18 04:36:35 +00:00
description = "A command-line fuzzy finder written in Go";
license = licenses.mit;
maintainers = with maintainers; [ filalex77 ma27 ];
2016-07-18 04:36:35 +00:00
platforms = platforms.unix;
};
}