Merge pull request #33747 from ttuegel/bugfix/qt-5/eval-size

qt5: reduce evaluation memory use
This commit is contained in:
Thomas Tuegel 2018-01-11 08:36:13 -06:00 committed by GitHub
commit 7fedfeabae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10587,7 +10587,7 @@ with pkgs;
inherit (gst_all_1) gstreamer gst-plugins-base;
});
libsForQt56 = recurseIntoAttrs (lib.makeScope qt56.newScope mkLibsForQt5);
libsForQt56 = lib.makeScope qt56.newScope mkLibsForQt5;
qt59 = recurseIntoAttrs (makeOverridable
(import ../development/libraries/qt-5/5.9) {
@ -10602,7 +10602,7 @@ with pkgs;
inherit (gnome3) gtk3 dconf;
});
libsForQt59 = recurseIntoAttrs (lib.makeScope qt59.newScope mkLibsForQt5);
libsForQt59 = lib.makeScope qt59.newScope mkLibsForQt5;
qt5 = qt59;
libsForQt5 = libsForQt59;