pixman: Raise individual test timeout to 240 seconds

This commit is contained in:
OPNA2608 2024-03-14 21:27:47 +01:00
parent 4ff4273dbc
commit 91acdf36ef
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,12 @@ stdenv.mkDerivation (finalAttrs: {
hash = "sha256-6nkpflQY+1KNBGbotbkdG+iIV/o3BvSXd7KSWnKumSQ=";
};
# Raise test timeout, 120s can be slightly exceeded on slower hardware
postPatch = ''
substituteInPlace test/meson.build \
--replace-fail 'timeout : 120' 'timeout : 240'
'';
separateDebugInfo = !stdenv.hostPlatform.isStatic;
nativeBuildInputs = [ meson ninja pkg-config ];