2022-12-21 09:12:24 +00:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
2022-11-02 18:28:29 +00:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
2022-12-30 08:36:17 +00:00
|
|
|
, writeShellScriptBin
|
2022-11-02 18:28:29 +00:00
|
|
|
, runtimeShell
|
|
|
|
, installShellFiles
|
2023-06-12 14:33:43 +00:00
|
|
|
, bc
|
2022-11-02 18:28:29 +00:00
|
|
|
, ncurses
|
|
|
|
, perl
|
2023-01-16 20:41:27 +00:00
|
|
|
, testers
|
|
|
|
, fzf
|
2022-11-02 18:28:29 +00:00
|
|
|
}:
|
2022-12-21 09:12:24 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
# on Linux, wrap perl in the bash completion scripts with the glibc locales,
|
|
|
|
# so that using the shell completion (ctrl+r, etc) doesn't result in ugly
|
|
|
|
# warnings on non-nixos machines
|
2023-01-17 19:19:49 +00:00
|
|
|
ourPerl = if !stdenv.isLinux then perl else (
|
2022-12-30 08:36:17 +00:00
|
|
|
writeShellScriptBin "perl" ''
|
2023-12-09 19:55:49 +00:00
|
|
|
export PERL_BADLANG=0
|
2022-12-21 09:12:24 +00:00
|
|
|
exec ${perl}/bin/perl "$@"
|
|
|
|
'');
|
|
|
|
in
|
2019-07-10 16:36:06 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fzf";
|
2024-01-01 07:27:24 +00:00
|
|
|
version = "0.45.0";
|
2016-06-02 19:21:45 +00:00
|
|
|
|
2016-06-06 10:26:56 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "junegunn";
|
2019-07-10 16:36:06 +00:00
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2024-01-01 07:27:24 +00:00
|
|
|
hash = "sha256-oOAXV3TZ/E2b+P1sUy/oblSBkOF8VN1di7a7dWPmCbo=";
|
2016-06-02 19:21:45 +00:00
|
|
|
};
|
|
|
|
|
2024-01-01 07:27:24 +00:00
|
|
|
vendorHash = "sha256-w/7Ds31mW1jnjkKVeaH81bLhasxNyy/SWeww20KhBrs=";
|
2019-07-10 16:36:06 +00:00
|
|
|
|
2023-06-01 18:35:20 +00:00
|
|
|
CGO_ENABLED = 0;
|
|
|
|
|
2019-07-10 16:36:06 +00:00
|
|
|
outputs = [ "out" "man" ];
|
2017-01-06 09:27:35 +00:00
|
|
|
|
2022-11-02 18:28:29 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2017-04-03 23:30:08 +00:00
|
|
|
|
2016-06-02 19:21:45 +00:00
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
2021-07-31 13:44:18 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s" "-w" "-X main.version=${version} -X main.revision=${src.rev}"
|
2020-10-28 22:33:31 +00:00
|
|
|
];
|
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.
|
2021-01-05 20:11:26 +00:00
|
|
|
postPatch = ''
|
2020-02-09 23:43:22 +00:00
|
|
|
sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/fzf.vim
|
2018-05-07 03:42:05 +00: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 03:42:05 +00:00
|
|
|
fi
|
2020-08-21 20:30:27 +00:00
|
|
|
|
|
|
|
# Has a sneaky dependency on perl
|
|
|
|
# Include first args to make sure we're patching the right thing
|
|
|
|
substituteInPlace shell/key-bindings.bash \
|
2023-11-07 18:42:01 +00:00
|
|
|
--replace "command -v perl" "command -v ${ourPerl}/bin/perl" \
|
2022-12-21 09:12:24 +00:00
|
|
|
--replace " perl -n " " ${ourPerl}/bin/perl -n "
|
2023-06-12 14:33:43 +00:00
|
|
|
# fzf-tmux depends on bc
|
|
|
|
substituteInPlace bin/fzf-tmux \
|
|
|
|
--replace "bc" "${bc}/bin/bc"
|
2016-06-02 19:21:45 +00:00
|
|
|
'';
|
|
|
|
|
2016-09-14 20:29:08 +00:00
|
|
|
postInstall = ''
|
2022-11-02 18:28:29 +00:00
|
|
|
install bin/fzf-tmux $out/bin
|
|
|
|
|
|
|
|
installManPage man/man1/fzf.1 man/man1/fzf-tmux.1
|
2019-07-10 16:36:06 +00:00
|
|
|
|
2022-11-02 18:28:29 +00:00
|
|
|
install -D plugin/* -t $out/share/vim-plugins/${pname}/plugin
|
2023-03-05 16:49:18 +00:00
|
|
|
mkdir -p $out/share/nvim
|
|
|
|
ln -s $out/share/vim-plugins/${pname} $out/share/nvim/site
|
2017-07-28 09:42:28 +00:00
|
|
|
|
2022-11-02 18:28:29 +00:00
|
|
|
# Install shell integrations
|
|
|
|
install -D shell/* -t $out/share/fzf/
|
|
|
|
install -D shell/key-bindings.fish $out/share/fish/vendor_functions.d/fzf_key_bindings.fish
|
|
|
|
mkdir -p $out/share/fish/vendor_conf.d
|
2023-10-18 07:59:02 +00:00
|
|
|
cat << EOF > $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
|
|
|
|
status is-interactive; or exit 0
|
|
|
|
fzf_key_bindings
|
|
|
|
EOF
|
2019-07-10 16:36:06 +00:00
|
|
|
|
|
|
|
cat <<SCRIPT > $out/bin/fzf-share
|
2019-02-26 11:45:54 +00:00
|
|
|
#!${runtimeShell}
|
2017-07-28 09:42:28 +00:00
|
|
|
# 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
|
2017-07-28 09:42:28 +00:00
|
|
|
SCRIPT
|
2019-07-10 16:36:06 +00:00
|
|
|
chmod +x $out/bin/fzf-share
|
2016-06-02 19:21:45 +00:00
|
|
|
'';
|
2016-07-18 04:36:35 +00:00
|
|
|
|
2023-01-16 20:41:27 +00:00
|
|
|
passthru.tests.version = testers.testVersion {
|
|
|
|
package = fzf;
|
|
|
|
};
|
|
|
|
|
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;
|
2020-11-17 11:02:06 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne ma27 zowoq ];
|
2016-07-18 04:36:35 +00:00
|
|
|
platforms = platforms.unix;
|
2021-03-13 23:39:18 +00:00
|
|
|
changelog = "https://github.com/junegunn/fzf/blob/${version}/CHANGELOG.md";
|
2023-10-05 04:27:42 +00:00
|
|
|
mainProgram = "fzf";
|
2016-07-18 04:36:35 +00:00
|
|
|
};
|
2020-06-08 03:24:35 +00:00
|
|
|
}
|