forked from mirrors/nixpkgs
qt55.qtbase: don't propagate cups dependency
This commit is contained in:
parent
fcf290cd1d
commit
5337a2a4b3
|
@ -185,14 +185,14 @@ stdenv.mkDerivation {
|
|||
# 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
|
||||
++ lib.optionals mesaSupported [ mesa mesa_glu ]
|
||||
++ lib.optional (cups != null) cups
|
||||
++ lib.optional (mysql != null) mysql.lib
|
||||
++ lib.optional (postgresql != null) postgresql
|
||||
++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf];
|
||||
|
||||
buildInputs =
|
||||
[ bison flex gperf ruby ]
|
||||
++ lib.optional developerBuild gdb;
|
||||
++ lib.optional developerBuild gdb
|
||||
++ lib.optional (cups != null) cups;
|
||||
|
||||
nativeBuildInputs = [ python perl pkgconfig ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue