pkgsMusl.libical: fix build by disabling tests

We can't support running tests on Musl until TZDIR support is added.

+2 -1
+2 -1
pkgs/development/libraries/libical/default.nix
··· 81 82 # Using install check so we do not have to manually set 83 # LD_LIBRARY_PATH and GI_TYPELIB_PATH variables 84 - doInstallCheck = true; 85 enableParallelChecking = false; 86 preInstallCheck = if stdenv.isDarwin then '' 87 for testexe in $(find ./src/test -maxdepth 1 -type f -executable); do
··· 81 82 # Using install check so we do not have to manually set 83 # LD_LIBRARY_PATH and GI_TYPELIB_PATH variables 84 + # Musl does not support TZDIR. 85 + doInstallCheck = !stdenv.hostPlatform.isMusl; 86 enableParallelChecking = false; 87 preInstallCheck = if stdenv.isDarwin then '' 88 for testexe in $(find ./src/test -maxdepth 1 -type f -executable); do