qt5/libsForQt5: Switch MacOS to Qt 5.12 by default

Qt 5.11 does not build after the latest mesa update
This commit is contained in:
adisbladis 2019-11-10 12:32:58 +00:00
parent c9774cb6e5
commit d5937a8096
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -13476,8 +13476,8 @@ in
libsForQt512 = recurseIntoAttrs (lib.makeScope qt512.newScope mkLibsForQt5);
# TODO bump to 5.12 on darwin once it's not broken
qt5 = if stdenv.isDarwin then qt511 else qt512;
libsForQt5 = if stdenv.isDarwin then libsForQt511 else libsForQt512;
qt5 = qt512;
libsForQt5 = libsForQt512;
qt5ct = libsForQt5.callPackage ../tools/misc/qt5ct { };