aws-c-common: mark broken on musl

A recent update to aws-c-common uses the nonportable glibc-specific
pthread_attr_setaffinity_np function, which precludes compilation on
musl.
This commit is contained in:
Ryan Burns 2021-02-05 19:55:48 -08:00
parent 3985624500
commit 33f50b3816

View File

@ -26,5 +26,7 @@ stdenv.mkDerivation rec {
license = licenses.asl20;
platforms = platforms.unix;
maintainers = with maintainers; [ orivej eelco ];
# https://github.com/awslabs/aws-c-common/issues/754
broken = stdenv.hostPlatform.isMusl;
};
}