dbus-cpp.passthru.tests.pkg-config: Disable version check for current version

Will hopefully get fixed by the next release, so do the check once version gets changed again.
This commit is contained in:
OPNA2608
2025-09-18 14:37:38 +02:00
parent 94ef8b69d6
commit da253f9dd5
+3 -1
View File
@@ -94,7 +94,9 @@ stdenv.mkDerivation (finalAttrs: {
passthru = {
tests.pkg-config = testers.hasPkgConfigModules {
package = finalAttrs.finalPackage;
versionCheck = true;
# Not bumped for 5.0.5: https://gitlab.com/ubports/development/core/lib-cpp/dbus-cpp/-/issues/9
# Try again on next bump.
versionCheck = finalAttrs.version != "5.0.5";
};
updateScript = gitUpdater { };
};