2020-03-12 08:03:26 +03:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses }:
|
2016-06-02 22:21:45 +03:00
|
|
|
|
2019-07-10 19:36:06 +03:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fzf";
|
2020-04-03 11:50:25 +03:00
|
|
|
version = "0.21.1";
|
2016-06-02 22:21:45 +03:00
|
|
|
|
2016-06-06 13:26:56 +03:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "junegunn";
|
2019-07-10 19:36:06 +03:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-04-03 11:50:25 +03:00
|
|
|
sha256 = "0piz1dzczcw1nsff775zicvpm6iy0iw0v0ba7rj7i0xqv9ni1prw";
|
2016-06-02 22:21:45 +03:00
|
|
|
};
|
|
|
|
|
2020-05-01 04:59:00 +03:00
|
|
|
vendorSha256 = "1c2iz28hjrw9rig9a6r27wd8clycdhi8fgs3da91c63w4qi140zm";
|
2019-07-10 19:36:06 +03:00
|
|
|
|
|
|
|
outputs = [ "out" "man" ];
|
2017-01-06 12:27:35 +03:00
|
|
|
|
2017-04-04 02:30:08 +03:00
|
|
|
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
|
|
|
|
|
2016-06-02 22:21:45 +03:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2020-02-10 02:43:22 +03:00
|
|
|
# The vim plugin expects a relative path to the binary; patch it to abspath.
|
2016-06-02 22:21:45 +03:00
|
|
|
patchPhase = ''
|
2020-02-10 02:43:22 +03:00
|
|
|
sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/fzf.vim
|
2018-05-07 06:42:05 +03:00
|
|
|
|
2020-02-10 02:43:22 +03:00
|
|
|
if ! grep -q $out plugin/fzf.vim; then
|
|
|
|
echo "Failed to replace vim base_dir path with $out"
|
|
|
|
exit 1
|
2018-05-07 06:42:05 +03:00
|
|
|
fi
|
2016-06-02 22:21:45 +03:00
|
|
|
'';
|
|
|
|
|
2020-02-10 02:43:22 +03:00
|
|
|
doCheck = true;
|
|
|
|
|
2017-04-04 02:30:08 +03:00
|
|
|
preInstall = ''
|
2019-07-10 19:36:06 +03:00
|
|
|
mkdir -p $out/share/fish/{vendor_functions.d,vendor_conf.d}
|
2020-02-10 02:43:22 +03:00
|
|
|
cp shell/key-bindings.fish $out/share/fish/vendor_functions.d/fzf_key_bindings.fish
|
2019-07-10 19:36:06 +03:00
|
|
|
cp ${fishHook} $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
|
2017-04-04 02:30:08 +03:00
|
|
|
'';
|
|
|
|
|
2016-09-14 23:29:08 +03:00
|
|
|
postInstall = ''
|
2020-02-10 02:43:22 +03:00
|
|
|
cp bin/fzf-tmux $out/bin
|
2019-07-10 19:36:06 +03:00
|
|
|
|
2017-01-06 12:27:35 +03:00
|
|
|
mkdir -p $man/share/man
|
2020-02-10 02:43:22 +03:00
|
|
|
cp -r man/man1 $man/share/man
|
2017-07-28 12:42:28 +03:00
|
|
|
|
2019-11-28 16:54:24 +03:00
|
|
|
mkdir -p $out/share/vim-plugins/${pname}
|
2020-02-10 02:43:22 +03:00
|
|
|
cp -r plugin $out/share/vim-plugins/${pname}
|
2019-07-10 19:36:06 +03:00
|
|
|
|
2020-02-10 02:43:22 +03:00
|
|
|
cp -R shell $out/share/fzf
|
2019-07-10 19:36:06 +03:00
|
|
|
cat <<SCRIPT > $out/bin/fzf-share
|
2019-02-26 14:45:54 +03:00
|
|
|
#!${runtimeShell}
|
2017-07-28 12:42:28 +03:00
|
|
|
# Run this script to find the fzf shared folder where all the shell
|
|
|
|
# integration scripts are living.
|
2019-07-10 19:36:06 +03:00
|
|
|
echo $out/share/fzf
|
2017-07-28 12:42:28 +03:00
|
|
|
SCRIPT
|
2019-07-10 19:36:06 +03:00
|
|
|
chmod +x $out/bin/fzf-share
|
2016-06-02 22:21:45 +03:00
|
|
|
'';
|
2016-07-18 07:36:35 +03:00
|
|
|
|
2019-07-10 19:36:06 +03:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/junegunn/fzf";
|
2016-07-18 07:36:35 +03:00
|
|
|
description = "A command-line fuzzy finder written in Go";
|
|
|
|
license = licenses.mit;
|
2020-06-08 06:24:35 +03:00
|
|
|
maintainers = with maintainers; [ filalex77 ma27 zowoq ];
|
2016-07-18 07:36:35 +03:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2020-06-08 06:24:35 +03:00
|
|
|
}
|