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

46 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, ncurses, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "fzf-${version}";
2016-12-14 23:23:00 +00:00
version = "0.15.9";
rev = "${version}";
goPackagePath = "github.com/junegunn/fzf";
src = fetchFromGitHub {
inherit rev;
owner = "junegunn";
repo = "fzf";
2016-12-14 23:23:00 +00:00
sha256 = "0r099mk9r6f52qqhx0ifb1xa8f2isqvyza80z9mcpi5zkd96174l";
};
buildInputs = [ ncurses ];
goDeps = ./deps.nix;
2016-07-18 04:36:35 +00:00
patchPhase = ''
sed -i -e "s|expand('<sfile>:h:h').'/bin/fzf'|'$bin/bin/fzf'|" plugin/fzf.vim
sed -i -e "s|expand('<sfile>:h:h').'/bin/fzf-tmux'|'$bin/bin/fzf-tmux'|" plugin/fzf.vim
'';
2016-09-14 20:29:08 +00:00
postInstall = ''
cp $src/bin/fzf-tmux $bin/bin
mkdir -p $out/share/vim-plugins
2016-06-04 06:14:36 +00:00
ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name}
'';
2016-07-18 04:36:35 +00:00
2016-09-14 20:29:08 +00:00
preFixup = stdenv.lib.optionalString stdenv.isDarwin ''
# fixes cycle between $out and $bin
# otool -l shows that the binary includes an LC_RPATH to $out/lib
# it seems safe to remove that since but the directory does not exist.
install_name_tool -delete_rpath $out/lib $bin/bin/fzf
'';
2016-07-18 04:36:35 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/junegunn/fzf;
description = "A command-line fuzzy finder written in Go";
license = licenses.mit;
platforms = platforms.unix;
};
}