lol

fzf: fix invalid symlink on vim-plugins

The fzf vim plugin wasn't working because it was making a symlink to a
directory with the full source code. This directory isn't present
anymore since the commit e95f17e2720e67e2eabd59d7754c814d3e27a0b2 wich
removes it because it isn't so useful for the go packages.

I fixed it by manually copying the plugin/ directory into the out
derivation, which is the only part of the source that contains the vim
plugin.

+2 -2
+2 -2
pkgs/tools/misc/fzf/default.nix
··· 42 42 cp $src/bin/fzf-tmux $bin/bin 43 43 mkdir -p $man/share/man 44 44 cp -r $src/man/man1 $man/share/man 45 - mkdir -p $out/share/vim-plugins 46 - ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name} 45 + mkdir -p $out/share/vim-plugins/${name} 46 + cp -r $src/plugin $out/share/vim-plugins/${name} 47 47 48 48 cp -R $src/shell $bin/share/fzf 49 49 cat <<SCRIPT > $bin/bin/fzf-share