From 37e43909719560725851554d5fa9077872f3eb69 Mon Sep 17 00:00:00 2001 From: Dmitry Kalinkin Date: Sat, 12 Jan 2019 09:20:42 -0500 Subject: [PATCH] qt5: use 5.11 on darwin until it's fixed Fixes: 8e811ec29 ('qt5: 5.11 -> 5.12') Resolves: #53841 --- pkgs/top-level/all-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fd1df25b4e1..29ac7253522 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 { };