2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, ncurses, buildGoPackage, fetchFromGitHub, writeText }:
|
2016-06-02 20:21:45 +01:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "fzf-${version}";
|
2018-06-13 23:13:42 +01:00
|
|
|
version = "0.17.4";
|
2016-06-02 20:21:45 +01:00
|
|
|
rev = "${version}";
|
|
|
|
|
|
|
|
goPackagePath = "github.com/junegunn/fzf";
|
|
|
|
|
2016-06-06 11:26:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-06-02 20:21:45 +01:00
|
|
|
inherit rev;
|
2016-06-06 11:26:56 +01:00
|
|
|
owner = "junegunn";
|
|
|
|
repo = "fzf";
|
2018-06-13 23:13:42 +01:00
|
|
|
sha256 = "10k21v9x82imly36lgra8a7rlvz5a1jd49db16g9xc11wx7cdg8g";
|
2016-06-02 20:21:45 +01:00
|
|
|
};
|
|
|
|
|
2017-01-06 09:27:35 +00:00
|
|
|
outputs = [ "bin" "out" "man" ];
|
|
|
|
|
2017-04-04 00:30:08 +01:00
|
|
|
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
|
|
|
|
|
2016-06-02 20:21:45 +01:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2016-09-10 11:04:13 +01:00
|
|
|
goDeps = ./deps.nix;
|
2016-07-18 05:36:35 +01:00
|
|
|
|
2016-06-02 20:21:45 +01:00
|
|
|
patchPhase = ''
|
2018-05-07 04:42:05 +01: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 20:21:45 +01:00
|
|
|
'';
|
|
|
|
|
2017-04-04 00:30:08 +01:00
|
|
|
preInstall = ''
|
|
|
|
mkdir -p $bin/share/fish/vendor_functions.d $bin/share/fish/vendor_conf.d
|
|
|
|
cp $src/shell/key-bindings.fish $bin/share/fish/vendor_functions.d/fzf_key_bindings.fish
|
|
|
|
cp ${fishHook} $bin/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
|
|
|
|
'';
|
|
|
|
|
2016-09-14 21:29:08 +01:00
|
|
|
postInstall = ''
|
2016-06-02 20:21:45 +01:00
|
|
|
cp $src/bin/fzf-tmux $bin/bin
|
2017-01-06 09:27:35 +00:00
|
|
|
mkdir -p $man/share/man
|
|
|
|
cp -r $src/man/man1 $man/share/man
|
2018-07-27 16:27:42 +01:00
|
|
|
mkdir -p $out/share/vim-plugins/${name}
|
|
|
|
cp -r $src/plugin $out/share/vim-plugins/${name}
|
2017-07-28 10:42:28 +01:00
|
|
|
|
|
|
|
cp -R $src/shell $bin/share/fzf
|
|
|
|
cat <<SCRIPT > $bin/bin/fzf-share
|
|
|
|
#!/bin/sh
|
|
|
|
# Run this script to find the fzf shared folder where all the shell
|
|
|
|
# integration scripts are living.
|
|
|
|
echo $bin/share/fzf
|
|
|
|
SCRIPT
|
|
|
|
chmod +x $bin/bin/fzf-share
|
2016-06-02 20:21:45 +01:00
|
|
|
'';
|
2016-07-18 05:36:35 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/junegunn/fzf;
|
|
|
|
description = "A command-line fuzzy finder written in Go";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2016-06-02 20:21:45 +01:00
|
|
|
}
|