43 lines
1.1 KiB
Nix
43 lines
1.1 KiB
Nix
{ stdenv, lib, ncurses, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "fzf-${version}";
|
|
version = "0.16.2";
|
|
rev = "${version}";
|
|
|
|
goPackagePath = "github.com/junegunn/fzf";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "junegunn";
|
|
repo = "fzf";
|
|
sha256 = "160474x0m3fzxi2ddy53chzhmlrx6lvialjknfxb72rm938fc845";
|
|
};
|
|
|
|
outputs = [ "bin" "out" "man" ];
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
goDeps = ./deps.nix;
|
|
|
|
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
|
|
'';
|
|
|
|
postInstall = ''
|
|
cp $src/bin/fzf-tmux $bin/bin
|
|
mkdir -p $man/share/man
|
|
cp -r $src/man/man1 $man/share/man
|
|
mkdir -p $out/share/vim-plugins
|
|
ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name}
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|