mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
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:
parent
d6264f9094
commit
2a7910655e
1 changed files with 2 additions and 1 deletions
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue