Fix QGtkStyle for Qt 5 versions

This commit is contained in:
Thomas Tuegel 2015-05-19 08:11:42 -05:00
parent e697219d3d
commit b84f3e85d9
2 changed files with 6 additions and 2 deletions

View File

@ -119,6 +119,7 @@ stdenv.mkDerivation rec {
-xcb
-qpa xcb
-${optionalString (cups == null) "no-"}cups
-${optionalString (!gtkStyle) "no-"}gtkstyle
-no-eglfs
-no-directfb
@ -155,7 +156,8 @@ stdenv.mkDerivation rec {
++ optionals mesaSupported [ mesa mesa_glu ]
++ optional (cups != null) cups
++ optional (mysql != null) mysql.lib
++ optional (postgresql != null) postgresql;
++ optional (postgresql != null) postgresql
++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf];
buildInputs = [ gdb bison flex gperf ruby ];

View File

@ -115,6 +115,7 @@ stdenv.mkDerivation {
-xcb
-qpa xcb
-${optionalString (cups == null) "no-"}cups
-${optionalString (!gtkStyle) "no-"}gtkstyle
-no-eglfs
-no-directfb
@ -150,7 +151,8 @@ stdenv.mkDerivation {
++ optionals mesaSupported [ mesa mesa_glu ]
++ optional (cups != null) cups
++ optional (mysql != null) mysql.lib
++ optional (postgresql != null) postgresql;
++ optional (postgresql != null) postgresql
++ optionals gtkStyle [gnome_vfs libgnomeui gtk GConf];
buildInputs = [ gdb bison flex gperf ruby ];