libxcrypt: fix build with musl

Changed files
+3 -1
pkgs
development
libraries
libxcrypt
+3 -1
pkgs/development/libraries/libxcrypt/default.nix
···
"--enable-hashes=all"
"--enable-obsolete-api=glibc"
"--disable-failure-tokens"
+
] ++ lib.optionals stdenv.hostPlatform.isMusl [
+
"--disable-werror"
];
nativeBuildInputs = [
···
enableParallelBuilding = true;
-
doCheck = true;
+
doCheck = !stdenv.hostPlatform.isMusl;
meta = with lib; {
description = "Extended crypt library for descrypt, md5crypt, bcrypt, and others";