about summary refs log tree commit diff
path: root/pkgs/development/interpreters/lua-5/hooks/luarocks-check-hook.sh
blob: bc6c6255d56014a9f30f1bb0583fbedbd1fadc9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Setup hook for checking whether Python imports succeed
echo "Sourcing luarocks-check-hook.sh"

luarocksCheckPhase () {
    echo "Executing luarocksCheckPhase"
    runHook preCheck

    luarocks test

    runHook postCheck
    echo "Finished executing luarocksCheckPhase"
}

if [ -z "${dontLuarocksCheck-}" ] && [ -z "${checkPhase-}" ]; then
    echo "Using luarocksCheckPhase"
    checkPhase+=" luarocksCheckPhase"
fi