qt5.qtwebengine: clarify on which platform is the package broken

This commit is contained in:
Pavol Rusnak 2021-12-23 20:17:32 +01:00
parent af8c095665
commit 5581f0f82f
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -241,6 +241,10 @@ qtModule {
platforms = platforms.unix;
# This build takes a long time; particularly on slow architectures
timeout = 24 * 3600;
broken = stdenv.isDarwin && (lib.versionAtLeast qtCompatVersion "5.14"); # requires a newer SDK
# we are still stuck with MacOS SDK 10.12 on x86_64-darwin
# and qtwebengine 5.14+ requires at least SDK 10.14
# (qtwebengine 5.12 is fine with SDK 10.12)
# on aarch64-darwin we are already at MacOS SDK 11.0
broken = stdenv.isDarwin && stdenv.isx86_64 && (lib.versionAtLeast qtCompatVersion "5.14");
};
}