fzf: from 0.15.9 to 0.16.2

This commit is contained in:
Anmol Sethi
2017-01-29 00:52:22 -05:00
parent 9027474b7e
commit a4b8a67532
2 changed files with 13 additions and 11 deletions
+2 -9
View File
@@ -2,7 +2,7 @@
buildGoPackage rec {
name = "fzf-${version}";
version = "0.15.9";
version = "0.16.2";
rev = "${version}";
goPackagePath = "github.com/junegunn/fzf";
@@ -11,7 +11,7 @@ buildGoPackage rec {
inherit rev;
owner = "junegunn";
repo = "fzf";
sha256 = "0r099mk9r6f52qqhx0ifb1xa8f2isqvyza80z9mcpi5zkd96174l";
sha256 = "160474x0m3fzxi2ddy53chzhmlrx6lvialjknfxb72rm938fc845";
};
outputs = [ "bin" "out" "man" ];
@@ -33,13 +33,6 @@ buildGoPackage rec {
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";