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