mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
all-packages.nix: use mesaPlatforms list to determine whether wxGTX should be built with OpenGL support or not
svn path=/nixpkgs/trunk/; revision=33070
This commit is contained in:
parent
f59e3b6bfb
commit
45e9207c4c
@ -4795,19 +4795,21 @@ let
|
||||
inherit (gtkLibs) gtk;
|
||||
inherit (gst_all) gstreamer gstPluginsBase;
|
||||
inherit (gnome) GConf;
|
||||
withMesa = stdenv.isLinux;
|
||||
withMesa = lib.elem system lib.platforms.mesaPlatforms;
|
||||
};
|
||||
|
||||
wxGTK290 = callPackage ../development/libraries/wxGTK-2.9/2.9.0.nix {
|
||||
inherit (gtkLibs) gtk;
|
||||
inherit (gst_all) gstreamer gstPluginsBase;
|
||||
inherit (gnome) GConf;
|
||||
withMesa = lib.elem system lib.platforms.mesaPlatforms;
|
||||
};
|
||||
|
||||
wxGTK291 = callPackage ../development/libraries/wxGTK-2.9/2.9.1.nix {
|
||||
inherit (gtkLibs) gtk;
|
||||
inherit (gst_all) gstreamer gstPluginsBase;
|
||||
inherit (gnome) GConf;
|
||||
withMesa = lib.elem system lib.platforms.mesaPlatforms;
|
||||
};
|
||||
|
||||
wtk = callPackage ../development/libraries/wtk { };
|
||||
|
Loading…
Reference in New Issue
Block a user