From ee3949d7207dabcd7ff46725ed8219a7127bbb00 Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Sat, 12 Jan 2019 23:46:00 -0600 Subject: [PATCH] nextpnr: use qtbase-5.11 instead of 5.12 This fixes a bizarre regression in the NextPNR GUI that causes the background of the OpenGL floorplanning window to become 'transparent' on certain platforms, greatly limiting its utility. However, QT 5.11 seems to work just fine here. Signed-off-by: Austin Seipp --- pkgs/top-level/all-packages.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 08717d34b77..77b3bbb038f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7412,7 +7412,11 @@ in neko = callPackage ../development/compilers/neko { }; - nextpnr = libsForQt5.callPackage ../development/compilers/nextpnr { }; + nextpnr = libsForQt5.callPackage ../development/compilers/nextpnr { + # QT 5.12 has a weird regression involving the floorplanning window having + # a 'blank' or 'transparent' background, so fall back to 5.11 for now. + qtbase = qt511.qtbase; + }; nasm = callPackage ../development/compilers/nasm { };