Merge pull request #53846 from NixOS/pr/qt5-darwin-fix
qt5: use 5.11 on darwin until it's fixed
This commit is contained in:
commit
4d2a989b7c
@ -12226,8 +12226,9 @@ in
|
|||||||
|
|
||||||
libsForQt512 = recurseIntoAttrs (lib.makeScope qt512.newScope mkLibsForQt5);
|
libsForQt512 = recurseIntoAttrs (lib.makeScope qt512.newScope mkLibsForQt5);
|
||||||
|
|
||||||
qt5 = qt512;
|
# TODO bump to 5.12 on darwin once it's not broken
|
||||||
libsForQt5 = libsForQt512;
|
qt5 = if stdenv.isDarwin then qt511 else qt512;
|
||||||
|
libsForQt5 = if stdenv.isDarwin then libsForQt511 else libsForQt512;
|
||||||
|
|
||||||
qt5ct = libsForQt5.callPackage ../tools/misc/qt5ct { };
|
qt5ct = libsForQt5.callPackage ../tools/misc/qt5ct { };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user