Skip to content

Commit

Permalink
Merge pull request #74496 from midchildan/fix-fzf-vim-plugin-path
Browse files Browse the repository at this point in the history
fzf: fix unstable vim plugin path
  • Loading branch information
Ma27 committed Jan 4, 2020
2 parents dc0fafb + bc213d0 commit 502ef3c
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions pkgs/tools/misc/fzf/default.nix
Expand Up @@ -36,15 +36,13 @@ buildGoModule rec {
'';

postInstall = ''
name="${pname}-${version}"
cp $src/bin/fzf-tmux $out/bin
mkdir -p $man/share/man
cp -r $src/man/man1 $man/share/man
mkdir -p $out/share/vim-plugins/$name
cp -r $src/plugin $out/share/vim-plugins/$name
mkdir -p $out/share/vim-plugins/${pname}
cp -r $src/plugin $out/share/vim-plugins/${pname}
cp -R $src/shell $out/share/fzf
cat <<SCRIPT > $out/bin/fzf-share
Expand Down

0 comments on commit 502ef3c

Please sign in to comment.