Skip to content

Commit

Permalink
qt5: switch back to 5.12 on darwin
Browse files Browse the repository at this point in the history
... until issue #95199 is fixed.
  • Loading branch information
vcunat committed Aug 14, 2020
1 parent b1a351f commit 96745f0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14623,9 +14623,9 @@ in

libsForQt514 = recurseIntoAttrs (lib.makeScope qt514.newScope mkLibsForQt5);

# TODO bump to 5.12 on darwin once it's not broken
qt5 = qt514;
libsForQt5 = libsForQt514;
# TODO bump to 5.14 on darwin once it's not broken; see #95199
qt5 = if stdenv.hostPlatform.isDarwin then qt512 else qt514;
libsForQt5 = if stdenv.hostPlatform.isDarwin then libsForQt512 else libsForQt514;

qt5ct = libsForQt5.callPackage ../tools/misc/qt5ct { };

Expand Down

0 comments on commit 96745f0

Please sign in to comment.