zvbi: disable tests on musl

Fixes: 5764885600 ("zvbi: enable doCheck")
This commit is contained in:
Alyssa Ross
2026-03-25 13:38:57 +01:00
parent 75cff34fdd
commit ad64bdfc31
+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;