mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
992b59c9a1
fzf: fix cycle in bin output
46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{ stdenv, lib, ncurses, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "fzf-${version}";
|
|
version = "0.15.1";
|
|
rev = "${version}";
|
|
|
|
goPackagePath = "github.com/junegunn/fzf";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "junegunn";
|
|
repo = "fzf";
|
|
sha256 = "0wj5nhrrgx4nkiqwjp5wpfzdyikrjv4qr5x39s5094yc4p2k30b1";
|
|
};
|
|
|
|
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 $out/share/vim-plugins
|
|
ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name}
|
|
'';
|
|
|
|
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
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|