mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 22:14:34 +00:00
cf53c81a2d
else neovim was not able to find the dependencies
22 lines
632 B
Bash
22 lines
632 B
Bash
# Setup hook for checking whether Python imports succeed
|
|
echo "Sourcing neovim-require-check-hook.sh"
|
|
|
|
neovimRequireCheckHook () {
|
|
echo "Executing neovimRequireCheckHook"
|
|
|
|
if [ -n "$nvimRequireCheck" ]; then
|
|
echo "Check whether the following module can be imported: $nvimRequireCheck"
|
|
|
|
# editorconfig-checker-disable
|
|
export HOME="$TMPDIR"
|
|
@nvimBinary@ -es --headless -n -u NONE -i NONE --clean -V1 \
|
|
--cmd "set rtp+=$out,${dependencies/ /,}" \
|
|
--cmd "lua require('$nvimRequireCheck')"
|
|
fi
|
|
}
|
|
|
|
echo "Using neovimRequireCheckHook"
|
|
preDistPhases+=" neovimRequireCheckHook"
|
|
|
|
|