wxGTK: temporarily disable gstreamer support

Currently it needs gconf2 which depends on orbit,
which seems unmaintained and doesn't even build with new glib.
This commit is contained in:
Vladimír Čunát 2013-03-30 12:08:56 +01:00
parent 30420115a4
commit 9b187c0be1

View File

@ -5103,12 +5103,14 @@ let
wxGTK = wxGTK28;
wxGTK28 = callPackage ../development/libraries/wxGTK-2.8 {
inherit (gnome) GConf;
#inherit (gnome) GConf; # disable gstreamer until orbit gets fixed for new glib
GConf = null; gstreamer = null; gst_plugins_base = null;
withMesa = lib.elem system lib.platforms.mesaPlatforms;
};
wxGTK29 = callPackage ../development/libraries/wxGTK-2.9/default.nix {
inherit (gnome) GConf;
#inherit (gnome) GConf; # disable gstreamer until orbit gets fixed for new glib
GConf = null; gstreamer = null; gst_plugins_base = null;
withMesa = lib.elem system lib.platforms.mesaPlatforms;
};