nixpkgs/pkgs/tools/misc/fzf/default.nix

77 lines
2.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, perl }:
2019-07-10 16:36:06 +00:00
buildGoModule rec {
pname = "fzf";
2021-06-01 22:20:16 +00:00
version = "0.27.2";
src = fetchFromGitHub {
owner = "junegunn";
2019-07-10 16:36:06 +00:00
repo = pname;
rev = version;
2021-06-01 22:20:16 +00:00
sha256 = "sha256-JWTyZRZrW1mFy91D+eZL6iYV0CcNxJUT4JA0hrBKZZU=";
};
vendorSha256 = "sha256-FKDCIotyra/TZ48wbpzudJZ2aI2pn+ZR4EoZ+9+19Mw=";
2019-07-10 16:36:06 +00:00
outputs = [ "out" "man" ];
2017-01-06 09:27:35 +00:00
2017-04-03 23:30:08 +00:00
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
buildInputs = [ ncurses ];
buildFlagsArray = [
"-ldflags=-s -w -X main.version=${version} -X main.revision=${src.rev}"
];
# The vim plugin expects a relative path to the binary; patch it to abspath.
postPatch = ''
sed -i -e "s|expand('<sfile>:h:h')|'$out'|" plugin/fzf.vim
if ! grep -q $out plugin/fzf.vim; then
echo "Failed to replace vim base_dir path with $out"
exit 1
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.zsh \
--replace " perl -ne " " ${perl}/bin/perl -ne "
substituteInPlace shell/key-bindings.bash \
--replace " perl -n " " ${perl}/bin/perl -n "
'';
2017-04-03 23:30:08 +00:00
preInstall = ''
2019-07-10 16:36:06 +00:00
mkdir -p $out/share/fish/{vendor_functions.d,vendor_conf.d}
cp shell/key-bindings.fish $out/share/fish/vendor_functions.d/fzf_key_bindings.fish
2019-07-10 16:36:06 +00:00
cp ${fishHook} $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
2017-04-03 23:30:08 +00:00
'';
2016-09-14 20:29:08 +00:00
postInstall = ''
cp bin/fzf-tmux $out/bin
2019-07-10 16:36:06 +00:00
2017-01-06 09:27:35 +00:00
mkdir -p $man/share/man
cp -r man/man1 $man/share/man
mkdir -p $out/share/vim-plugins/${pname}
cp -r plugin $out/share/vim-plugins/${pname}
2019-07-10 16:36:06 +00:00
cp -R shell $out/share/fzf
2019-07-10 16:36:06 +00:00
cat <<SCRIPT > $out/bin/fzf-share
#!${runtimeShell}
# 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
SCRIPT
2019-07-10 16:36:06 +00:00
chmod +x $out/bin/fzf-share
'';
2016-07-18 04:36:35 +00:00
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;
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";
2016-07-18 04:36:35 +00:00
};
2020-06-08 03:24:35 +00:00
}