mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
1fa84e3e02
so that the hook can be used for lua modules as well. Improves composition.
31 lines
801 B
Bash
31 lines
801 B
Bash
echo "Sourcing vim-gen-doc-hook"
|
|
|
|
# the doc folder is copied via the copy_directories entry of the rockspec
|
|
# in the folder gitsigns.nvim-scm-1-rocks/gitsigns.nvim/scm-1
|
|
vimPluginGenTags() {
|
|
echo "Executing vimPluginGenTags"
|
|
|
|
target="$out/@rtpPath@/$pname"
|
|
mkdir -p $out/@rtpPath@
|
|
cp -r . $target
|
|
|
|
# build help tags
|
|
if [ -d "$target/doc" ]; then
|
|
echo "Building help tags"
|
|
if ! @vimBinary@ -N -u NONE -i NONE -n -E -s -V1 -c "helptags $target/doc" +quit!; then
|
|
echo "Failed to build help tags!"
|
|
exit 1
|
|
fi
|
|
else
|
|
echo "No docs available"
|
|
fi
|
|
|
|
if [ -n "$addonInfo" ]; then
|
|
echo "$addonInfo" > $target/addon-info.json
|
|
fi
|
|
|
|
echo "Finished executing vimPluginInstallPhase"
|
|
}
|
|
|
|
preFixupHooks+=(vimPluginGenTags)
|
|
|