nixpkgs/pkgs/by-name/fz/fzf/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

92 lines
2.3 KiB
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
, runtimeShell
, installShellFiles
, bc
, ncurses
, testers
, fzf
}:
2019-07-10 16:36:06 +00:00
buildGoModule rec {
pname = "fzf";
2024-05-13 20:18:34 +00:00
version = "0.52.1";
src = fetchFromGitHub {
owner = "junegunn";
2024-05-01 11:18:24 +00:00
repo = "fzf";
2019-07-10 16:36:06 +00:00
rev = version;
2024-05-13 20:18:34 +00:00
hash = "sha256-cnLPn1AKq1BaWwXsWwQfC/lnejdyd1WdH1qIJRcfdks=";
};
2024-05-07 16:17:01 +00:00
vendorHash = "sha256-Kc/bYzakx9c/bF42LYyE1t8JCUqBsJQFtczrFocx/Ps=";
2019-07-10 16:36:06 +00:00
CGO_ENABLED = 0;
2019-07-10 16:36:06 +00:00
outputs = [ "out" "man" ];
2017-01-06 09:27:35 +00:00
nativeBuildInputs = [ installShellFiles ];
2017-04-03 23:30:08 +00:00
buildInputs = [ ncurses ];
2021-07-31 13:44:18 +00:00
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
# fzf-tmux depends on bc
substituteInPlace bin/fzf-tmux \
--replace "bc" "${bc}/bin/bc"
'';
2016-09-14 20:29:08 +00:00
postInstall = ''
install bin/fzf-tmux $out/bin
installManPage man/man1/fzf.1 man/man1/fzf-tmux.1
2019-07-10 16:36:06 +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
# 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
cat << EOF > $out/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
status is-interactive; or exit 0
fzf_key_bindings
EOF
cat <<SCRIPT > $out/bin/fzf-share
#!${runtimeShell}
# Run this script to find the fzf shared folder where all the shell
# integration scripts are living.
echo $out/share/fzf
SCRIPT
chmod +x $out/bin/fzf-share
'';
2016-07-18 04:36:35 +00:00
passthru.tests.version = testers.testVersion {
package = fzf;
};
2024-05-01 11:18:24 +00:00
meta = {
2021-03-13 23:39:18 +00:00
changelog = "https://github.com/junegunn/fzf/blob/${version}/CHANGELOG.md";
2024-05-01 11:18:24 +00:00
description = "Command-line fuzzy finder written in Go";
homepage = "https://github.com/junegunn/fzf";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ Br1ght0ne ma27 zowoq ];
mainProgram = "fzf";
2024-05-01 11:18:24 +00:00
platforms = lib.platforms.unix;
2016-07-18 04:36:35 +00:00
};
2020-06-08 03:24:35 +00:00
}