zvbi: disable tests on musl (#503355)

This commit is contained in:
Jo
2026-03-25 13:05:15 +00:00
committed by GitHub
+6 -1
View File
@@ -49,7 +49,12 @@ stdenv.mkDerivation (finalAttrs: {
enableParallelBuilding = true;
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform && !stdenv.hostPlatform.isDarwin;
doCheck =
stdenv.buildPlatform.canExecute stdenv.hostPlatform
&& !stdenv.hostPlatform.isDarwin
&&
# musl does not support TZDIR, used by the tzdata setup hook.
!stdenv.hostPlatform.isMusl;
passthru = {
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;