mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 14:11:36 +00:00
32 lines
794 B
Nix
32 lines
794 B
Nix
{ stdenv, lib, ncurses, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "fzf-${version}";
|
|
version = "0.13.2";
|
|
rev = "${version}";
|
|
|
|
goPackagePath = "github.com/junegunn/fzf";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "junegunn";
|
|
repo = "fzf";
|
|
sha256 = "12dr0wib2ajs64a8d3l3zmgj2y8rklkc3xrvgscxgiv29lrlmvfz";
|
|
};
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
goDeps = ./deps.json;
|
|
|
|
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 $out/share/vim-plugins
|
|
ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name}
|
|
'';
|
|
}
|