qt5: switch back to 5.12 on darwin

... until issue #95199 is fixed.
This commit is contained in:
Vladimír Čunát 2020-08-14 18:21:53 +02:00
parent b1a351fb73
commit 96745f0228
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -14623,9 +14623,9 @@ in
libsForQt514 = recurseIntoAttrs (lib.makeScope qt514.newScope mkLibsForQt5);
# TODO bump to 5.12 on darwin once it's not broken
qt5 = qt514;
libsForQt5 = libsForQt514;
# TODO bump to 5.14 on darwin once it's not broken; see #95199
qt5 = if stdenv.hostPlatform.isDarwin then qt512 else qt514;
libsForQt5 = if stdenv.hostPlatform.isDarwin then libsForQt512 else libsForQt514;
qt5ct = libsForQt5.callPackage ../tools/misc/qt5ct { };