about summary refs log tree commit diff
path: root/pkgs/applications/editors/vim/plugins/neovim-require-check-hook.sh
blob: 0c6a0010845d720d2f40b757feb50d4b25ebb41f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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"