mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 07:14:52 +00:00
011911bc54
The hook is added to buildLuarocksPackage when doCheck is set to true.
19 lines
421 B
Bash
19 lines
421 B
Bash
# 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
|
|
|