2011-03-27 08:44:34 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk, libXinerama, libSM, libXxf86vm, xf86vidmodeproto
|
2012-03-14 23:44:52 +01:00
|
|
|
, gstreamer, gst_plugins_base, GConf
|
2012-03-14 18:45:11 +01:00
|
|
|
, withMesa ? true, mesa ? null, compat24 ? false, compat26 ? true, unicode ? true,
|
2011-03-27 08:44:34 +02:00
|
|
|
}:
|
|
|
|
|
2012-03-14 18:45:11 +01:00
|
|
|
assert withMesa -> mesa != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2013-01-04 09:51:56 +01:00
|
|
|
let
|
|
|
|
version = "2.9.4";
|
|
|
|
in
|
2011-03-27 08:44:34 +02:00
|
|
|
stdenv.mkDerivation {
|
2013-01-04 09:51:56 +01:00
|
|
|
name = "wxwidgets-${version}";
|
2011-03-27 08:44:34 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-01-04 09:51:56 +01:00
|
|
|
url = "mirror://sourceforge/wxwindows/wxWidgets-${version}.tar.bz2";
|
|
|
|
sha256 = "04jda4bns7cmp7xy68qz112yg0lribpc6xs5k9gilfqcyhshqlvc";
|
2011-03-27 08:44:34 +02:00
|
|
|
};
|
|
|
|
|
2012-03-14 23:44:52 +01:00
|
|
|
buildInputs = [ gtk libXinerama libSM libXxf86vm xf86vidmodeproto gstreamer gst_plugins_base GConf ]
|
2012-03-14 18:45:11 +01:00
|
|
|
++ optional withMesa mesa;
|
2011-09-20 08:22:39 +02:00
|
|
|
|
|
|
|
buildNativeInputs = [ pkgconfig ];
|
2011-03-27 08:44:34 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-gtk2"
|
|
|
|
(if compat24 then "--enable-compat24" else "--disable-compat24")
|
|
|
|
(if compat26 then "--enable-compat26" else "--disable-compat26")
|
|
|
|
"--disable-precomp-headers"
|
|
|
|
(if unicode then "--enable-unicode" else "")
|
2012-01-13 11:32:02 +01:00
|
|
|
"--enable-mediactrl"
|
2012-03-14 18:45:11 +01:00
|
|
|
] ++ optional withMesa "--with-opengl";
|
2011-03-27 08:44:34 +02:00
|
|
|
|
2012-03-14 18:45:11 +01:00
|
|
|
SEARCH_LIB = optionalString withMesa "${mesa}/lib";
|
2011-03-27 08:44:34 +02:00
|
|
|
|
|
|
|
preConfigure = "
|
|
|
|
substituteInPlace configure --replace 'SEARCH_INCLUDE=' 'DUMMY_SEARCH_INCLUDE='
|
|
|
|
substituteInPlace configure --replace 'SEARCH_LIB=' 'DUMMY_SEARCH_LIB='
|
|
|
|
substituteInPlace configure --replace /usr /no-such-path
|
|
|
|
";
|
|
|
|
|
|
|
|
postInstall = "
|
|
|
|
(cd $out/include && ln -s wx-*/* .)
|
|
|
|
";
|
|
|
|
|
|
|
|
passthru = {inherit gtk compat24 compat26 unicode;};
|
2012-01-13 11:31:58 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2011-03-27 08:44:34 +02:00
|
|
|
}
|