Unverified Commit ad64bdfc authored by Alyssa Ross's avatar Alyssa Ross
Browse files

zvbi: disable tests on musl

Fixes: 57648856 ("zvbi: enable doCheck")
parent 75cff34f
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -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;