mono: be more precise in flagging broken builds

This commit is contained in:
Randy Eckenrode 2022-06-01 18:30:05 -04:00
parent f4d4b16d71
commit 1622a6cdeb
No known key found for this signature in database
GPG key ID: 64C1CD4EC2A600D9

View file

@ -76,7 +76,9 @@ stdenv.mkDerivation rec {
inherit enableParallelBuilding;
meta = with lib; {
broken = stdenv.isDarwin;
# Per nixpkgs#151720 the build failures for aarch64-darwin are fixed upstream, but a
# stable release with the fix is not available yet.
broken = stdenv.isDarwin && stdenv.isAarch64 && lib.versionOlder version "6.12.0.129";
homepage = "https://mono-project.com/";
description = "Cross platform, open source .NET development framework";
platforms = with platforms; darwin ++ linux;