about summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-01-12 02:27:33 -0600
committerWill Dietz <w@wdtz.org>2018-02-13 09:44:41 -0600
commit158c3c4864b55911e8be7db9c4b558c1a6dee207 (patch)
tree9c066be7038717d65c918774fcfb2fbe85ef5f58 /pkgs/development/libraries/libxml2
parentf969923bacf2d7d34dd86bcd7f232b899720a165 (diff)
downloadnixlib-158c3c4864b55911e8be7db9c4b558c1a6dee207.tar
nixlib-158c3c4864b55911e8be7db9c4b558c1a6dee207.tar.gz
nixlib-158c3c4864b55911e8be7db9c4b558c1a6dee207.tar.bz2
nixlib-158c3c4864b55911e8be7db9c4b558c1a6dee207.tar.lz
nixlib-158c3c4864b55911e8be7db9c4b558c1a6dee207.tar.xz
nixlib-158c3c4864b55911e8be7db9c4b558c1a6dee207.tar.zst
nixlib-158c3c4864b55911e8be7db9c4b558c1a6dee207.zip
libxml2: disable tests also
Diffstat (limited to 'pkgs/development/libraries/libxml2')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index b19f4a2953f1..c4f3ff1efdd5 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -36,7 +36,8 @@ in stdenv.mkDerivation rec {
 
   enableParallelBuilding = true;
 
-  doCheck = (stdenv.hostPlatform == stdenv.buildPlatform) && !stdenv.isDarwin;
+  doCheck = (stdenv.hostPlatform == stdenv.buildPlatform) && !stdenv.isDarwin &&
+    hostPlatform.libc != "musl";
 
   crossAttrs = lib.optionalAttrs (hostPlatform.libc == "msvcrt") {
     # creating the DLL is broken ATM