qt55.qtbase: don't propagate gtk dependencies
This commit is contained in:
parent
4b844747a2
commit
e64822b87d
1 changed files with 3 additions and 3 deletions
|
@ -184,15 +184,15 @@ stdenv.mkDerivation {
|
||||||
]
|
]
|
||||||
# Qt doesn't directly need GLU (just GL), but many apps use, it's small and
|
# Qt doesn't directly need GLU (just GL), but many apps use, it's small and
|
||||||
# doesn't remain a runtime-dep if not used
|
# doesn't remain a runtime-dep if not used
|
||||||
++ lib.optionals mesaSupported [ mesa mesa_glu ]
|
++ lib.optionals mesaSupported [ mesa mesa_glu ];
|
||||||
++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf];
|
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ bison flex gperf ruby ]
|
[ bison flex gperf ruby ]
|
||||||
++ lib.optional developerBuild gdb
|
++ lib.optional developerBuild gdb
|
||||||
++ lib.optional (cups != null) cups
|
++ lib.optional (cups != null) cups
|
||||||
++ lib.optional (mysql != null) mysql.lib
|
++ lib.optional (mysql != null) mysql.lib
|
||||||
++ lib.optional (postgresql != null) postgresql;
|
++ lib.optional (postgresql != null) postgresql
|
||||||
|
++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf];
|
||||||
|
|
||||||
nativeBuildInputs = [ python perl pkgconfig ];
|
nativeBuildInputs = [ python perl pkgconfig ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue