vimPlugins.fzfWrapper: place the fzf binary in the plugin's bin dir

This commit is contained in:
Wael Nasreddine 2021-03-10 11:11:42 -08:00 committed by Matthieu Coudron
parent 7b69e62cb0
commit 34cf38fca4

View File

@ -91,9 +91,11 @@ self: super: {
# plugin, since part of the fzf vim plugin is included in the main fzf
# program.
fzfWrapper = buildVimPluginFrom2Nix {
inherit (fzf) src version;
pname = "fzf";
version = fzf.version;
src = fzf.src;
postInstall = ''
ln -s ${fzf}/bin/fzf $target/bin/fzf
'';
};
skim = buildVimPluginFrom2Nix {