Skip to content

Commit

Permalink
qt5: use 5.11 on darwin until it's fixed
Browse files Browse the repository at this point in the history
Fixes: 8e811ec ('qt5: 5.11 -> 5.12')
Resolves: #53841
  • Loading branch information
veprbl committed Jan 12, 2019
1 parent b07e156 commit 37e4390
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -12226,8 +12226,9 @@ in

libsForQt512 = recurseIntoAttrs (lib.makeScope qt512.newScope mkLibsForQt5);

qt5 = qt512;
libsForQt5 = libsForQt512;
# 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 { };

Expand Down

0 comments on commit 37e4390

Please sign in to comment.