Skip to content

Commit 37e4390

Browse files
authored
qt5: use 5.11 on darwin until it's fixed
Fixes: 8e811ec ('qt5: 5.11 -> 5.12') Resolves: #53841
1 parent b07e156 commit 37e4390

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pkgs/top-level/all-packages.nix

+3-2
Original file line numberDiff line numberDiff line change
@@ -12226,8 +12226,9 @@ in
1222612226

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

12229-
qt5 = qt512;
12230-
libsForQt5 = libsForQt512;
12229+
# TODO bump to 5.12 on darwin once it's not broken
12230+
qt5 = if stdenv.isDarwin then qt511 else qt512;
12231+
libsForQt5 = if stdenv.isDarwin then libsForQt511 else libsForQt512;
1223112232

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

0 commit comments

Comments
 (0)