qt5 on darwin: revert back to 5.11

5.12 has been broken again, nad libsForQt5 has never been switched
anyway.  This should unblock the nixpkgs channel.  Discussion thread:
https://github.com/NixOS/nixpkgs/pull/66266#issuecomment-523131781
This commit is contained in:
Vladimír Čunát 2019-09-06 17:16:18 +02:00
parent d6264f9094
commit 2a7910655e
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -13215,7 +13215,8 @@ in
libsForQt512 = recurseIntoAttrs (lib.makeScope qt512.newScope mkLibsForQt5);
qt5 = qt512;
# 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;
qt5ct = libsForQt5.callPackage ../tools/misc/qt5ct { };