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:
parent
30420115a4
commit
9b187c0be1
|
@ -5103,12 +5103,14 @@ let
|
||||||
wxGTK = wxGTK28;
|
wxGTK = wxGTK28;
|
||||||
|
|
||||||
wxGTK28 = callPackage ../development/libraries/wxGTK-2.8 {
|
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;
|
withMesa = lib.elem system lib.platforms.mesaPlatforms;
|
||||||
};
|
};
|
||||||
|
|
||||||
wxGTK29 = callPackage ../development/libraries/wxGTK-2.9/default.nix {
|
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;
|
withMesa = lib.elem system lib.platforms.mesaPlatforms;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue