2020-08-21 13:30:27 -07:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, perl }:
|
2016-06-02 12:21:45 -07:00
|
|
|
|
2019-07-10 09:36:06 -07:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fzf";
|
2020-11-09 03:52:41 -08:00
|
|
|
version = "0.24.3";
|
2016-06-02 12:21:45 -07:00
|
|
|
|
2016-06-06 03:26:56 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "junegunn";
|
2019-07-10 09:36:06 -07:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-11-09 03:52:41 -08:00
|
|
|
sha256 = "04ycjgy40if0licc883lp7i6jpndvcndw24xp7lilskmaacpm5if";
|
2016-06-02 12:21:45 -07:00
|
|
|
};
|
|
|
|
|
2020-10-27 08:18:33 -07:00
|
|
|
vendorSha256 = "0dd0qm1fxp3jnlrhfaas8fw87cj7rygaac35a9nk3xh2xsk7q35p";
|
2019-07-10 09:36:06 -07:00
|
|
|
|
|
|
|
outputs = [ "out" "man" ];
|
2017-01-06 01:27:35 -08:00
|
|
|
|
2017-04-03 16:30:08 -07:00
|
|
|
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
|
|
|
|
|
2016-06-02 12:21:45 -07:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2020-10-28 15:33:31 -07:00
|
|
|
buildFlagsArray = [
|
|
|
|
"-ldflags=-s -w -X main.version=${version} -X main.revision=${src.rev}"
|
|
|
|
];
|
2020-10-27 08:18:33 -07:00
|
|
|
|
2020-02-09 15:43:22 -08:00
|
|
|
# The vim plugin expects a relative path to the binary; patch it to abspath.
|
2016-06-02 12:21:45 -07:00
|
|
|
patchPhase = ''
|
2020-02-09 15:43:22 -08:00
|
|
|
sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/fzf.vim
|
2018-05-06 20:42:05 -07:00
|
|
|
|
2020-02-09 15:43:22 -08:00
|
|
|
if ! grep -q $out plugin/fzf.vim; then
|
|
|
|
echo "Failed to replace vim base_dir path with $out"
|
|
|
|
exit 1
|
2018-05-06 20:42:05 -07:00
|
|
|
fi
|
2020-08-21 13:30:27 -07:00
|
|
|
|
|
|
|
# Has a sneaky dependency on perl
|
|
|
|
# Include first args to make sure we're patching the right thing
|
|
|
|
substituteInPlace shell/key-bindings.zsh \
|
|
|
|
--replace " perl -ne " " ${perl}/bin/perl -ne "
|
|
|
|
substituteInPlace shell/key-bindings.bash \
|
|
|
|
--replace " perl -n " " ${perl}/bin/perl -n "
|
2016-06-02 12:21:45 -07:00
|
|
|
'';
|
|
|
|
|
2017-04-03 16:30:08 -07:00
|
|
|
preInstall = ''
|
2019-07-10 09:36:06 -07:00
|
|
|
mkdir -p $out/share/fish/{vendor_functions.d,vendor_conf.d}
|
2020-02-09 15:43:22 -08:00
|
|
|
cp shell/key-bindings.fish $out/share/fish/vendor_functions.d/fzf_key_bindings.fish
|
2019-07-10 09:36:06 -07:00
|
|
|
cp ${fishHook} $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
|
2017-04-03 16:30:08 -07:00
|
|
|
'';
|
|
|
|
|
2016-09-14 13:29:08 -07:00
|
|
|
postInstall = ''
|
2020-02-09 15:43:22 -08:00
|
|
|
cp bin/fzf-tmux $out/bin
|
2019-07-10 09:36:06 -07:00
|
|
|
|
2017-01-06 01:27:35 -08:00
|
|
|
mkdir -p $man/share/man
|
2020-02-09 15:43:22 -08:00
|
|
|
cp -r man/man1 $man/share/man
|
2017-07-28 02:42:28 -07:00
|
|
|
|
2019-11-28 05:54:24 -08:00
|
|
|
mkdir -p $out/share/vim-plugins/${pname}
|
2020-02-09 15:43:22 -08:00
|
|
|
cp -r plugin $out/share/vim-plugins/${pname}
|
2019-07-10 09:36:06 -07:00
|
|
|
|
2020-02-09 15:43:22 -08:00
|
|
|
cp -R shell $out/share/fzf
|
2019-07-10 09:36:06 -07:00
|
|
|
cat <<SCRIPT > $out/bin/fzf-share
|
2019-02-26 03:45:54 -08:00
|
|
|
#!${runtimeShell}
|
2017-07-28 02:42:28 -07:00
|
|
|
# Run this script to find the fzf shared folder where all the shell
|
|
|
|
# integration scripts are living.
|
2019-07-10 09:36:06 -07:00
|
|
|
echo $out/share/fzf
|
2017-07-28 02:42:28 -07:00
|
|
|
SCRIPT
|
2019-07-10 09:36:06 -07:00
|
|
|
chmod +x $out/bin/fzf-share
|
2016-06-02 12:21:45 -07:00
|
|
|
'';
|
2016-07-17 21:36:35 -07:00
|
|
|
|
2019-07-10 09:36:06 -07:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/junegunn/fzf";
|
2016-07-17 21:36:35 -07:00
|
|
|
description = "A command-line fuzzy finder written in Go";
|
|
|
|
license = licenses.mit;
|
2020-06-07 20:24:35 -07:00
|
|
|
maintainers = with maintainers; [ filalex77 ma27 zowoq ];
|
2016-07-17 21:36:35 -07:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
2020-06-07 20:24:35 -07:00
|
|
|
}
|