jbigkit: disable parallel tests

When parallel building is enabled by default tests always fail as
all intermediate files are removed on each test interferring with
every parallel test.
This commit is contained in:
Sergei Trofimovich
2025-03-16 22:47:20 +00:00
parent 8db87f2960
commit 28b46461ca
+3
View File
@@ -79,6 +79,9 @@ stdenv.mkDerivation (finalAttrs: {
doCheck = true;
# Testing deletes all files on each test, causes test failures.
enableParallelChecking = false;
meta = {
broken = stdenv.hostPlatform.isDarwin;
description = "Software implementation of the JBIG1 data compression standard";