1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/fzf/default.nix

51 lines
1.4 KiB
Nix
Raw Normal View History

2017-04-04 00:30:08 +01:00
{ stdenv, lib, ncurses, buildGoPackage, fetchFromGitHub, writeText }:
buildGoPackage rec {
name = "fzf-${version}";
2017-06-08 01:53:20 +01:00
version = "0.16.8";
rev = "${version}";
goPackagePath = "github.com/junegunn/fzf";
src = fetchFromGitHub {
inherit rev;
owner = "junegunn";
repo = "fzf";
2017-06-08 01:53:20 +01:00
sha256 = "0d0fcv07pl2vvj9ql84rmy1kd0zg680chsfapm0iw3vssxqkm9zq";
};
2017-01-06 09:27:35 +00:00
outputs = [ "bin" "out" "man" ];
2017-04-04 00:30:08 +01:00
fishHook = writeText "load-fzf-keybindings.fish" "fzf_key_bindings";
buildInputs = [ ncurses ];
goDeps = ./deps.nix;
2016-07-18 05:36:35 +01: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
'';
2017-04-04 00:30:08 +01:00
preInstall = ''
mkdir -p $bin/share/fish/vendor_functions.d $bin/share/fish/vendor_conf.d
cp $src/shell/key-bindings.fish $bin/share/fish/vendor_functions.d/fzf_key_bindings.fish
cp ${fishHook} $bin/share/fish/vendor_conf.d/load-fzf-key-bindings.fish
'';
2016-09-14 21:29:08 +01:00
postInstall = ''
cp $src/bin/fzf-tmux $bin/bin
2017-01-06 09:27:35 +00:00
mkdir -p $man/share/man
cp -r $src/man/man1 $man/share/man
mkdir -p $out/share/vim-plugins
2016-06-04 07:14:36 +01:00
ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name}
'';
2016-07-18 05:36:35 +01: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;
};
}