2016-09-12 00:24:51 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gtk2, libXinerama, libSM, libXxf86vm, xf86vidmodeproto
|
2017-02-26 23:25:29 +03:00
|
|
|
, gstreamer, gst-plugins-base, GConf, setfile
|
2016-12-30 21:16:20 +03:00
|
|
|
, withMesa ? true, mesa ? null, compat24 ? false, compat26 ? true, unicode ? true
|
|
|
|
, Carbon ? null, Cocoa ? null, Kernel ? null, QuickTime ? null, AGL ? null
|
2011-03-27 10:44:34 +04:00
|
|
|
}:
|
|
|
|
|
2012-03-14 21:45:11 +04:00
|
|
|
assert withMesa -> mesa != null;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
|
2013-01-04 12:51:56 +04:00
|
|
|
let
|
|
|
|
version = "2.9.4";
|
|
|
|
in
|
2011-03-27 10:44:34 +04:00
|
|
|
stdenv.mkDerivation {
|
2013-01-04 12:51:56 +04:00
|
|
|
name = "wxwidgets-${version}";
|
2011-03-27 10:44:34 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2013-01-04 12:51:56 +04:00
|
|
|
url = "mirror://sourceforge/wxwindows/wxWidgets-${version}.tar.bz2";
|
|
|
|
sha256 = "04jda4bns7cmp7xy68qz112yg0lribpc6xs5k9gilfqcyhshqlvc";
|
2011-03-27 10:44:34 +04:00
|
|
|
};
|
|
|
|
|
2013-07-04 02:49:30 +04:00
|
|
|
buildInputs =
|
2016-09-12 00:24:51 +03:00
|
|
|
[ gtk2 libXinerama libSM libXxf86vm xf86vidmodeproto gstreamer
|
2017-02-26 23:25:29 +03:00
|
|
|
gst-plugins-base GConf ]
|
2013-07-04 02:49:30 +04:00
|
|
|
++ optional withMesa mesa
|
2016-12-30 21:16:20 +03:00
|
|
|
++ optionals stdenv.isDarwin [ setfile Carbon Cocoa Kernel QuickTime ];
|
2011-09-20 10:22:39 +04:00
|
|
|
|
2012-12-28 22:20:09 +04:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2011-03-27 10:44:34 +04:00
|
|
|
|
2016-12-30 21:16:20 +03:00
|
|
|
propagatedBuildInputs = optional stdenv.isDarwin AGL;
|
|
|
|
|
2013-07-04 02:49:30 +04:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-gtk2" "--disable-precomp-headers" "--enable-mediactrl"
|
|
|
|
(if compat24 then "--enable-compat24" else "--disable-compat24")
|
|
|
|
(if compat26 then "--enable-compat26" else "--disable-compat26") ]
|
|
|
|
++ optional unicode "--enable-unicode"
|
|
|
|
++ optional withMesa "--with-opengl"
|
|
|
|
++ optionals stdenv.isDarwin
|
|
|
|
# allow building on 64-bit
|
2016-12-30 21:16:20 +03:00
|
|
|
[ "--with-cocoa" "--enable-universal-binaries" "--with-macosx-version-min=10.7" ];
|
2011-03-27 10:44:34 +04:00
|
|
|
|
2012-03-14 21:45:11 +04:00
|
|
|
SEARCH_LIB = optionalString withMesa "${mesa}/lib";
|
2011-03-27 10:44:34 +04: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
|
2013-07-04 02:49:30 +04:00
|
|
|
" + optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure --replace \
|
|
|
|
'ac_cv_prog_SETFILE="/Developer/Tools/SetFile"' \
|
2013-07-07 12:54:33 +04:00
|
|
|
'ac_cv_prog_SETFILE="${setfile}/bin/SetFile"'
|
2016-12-30 21:16:20 +03:00
|
|
|
substituteInPlace configure --replace \
|
|
|
|
"-framework System" \
|
|
|
|
-lSystem
|
2013-07-04 02:49:30 +04:00
|
|
|
'';
|
2011-03-27 10:44:34 +04:00
|
|
|
|
|
|
|
postInstall = "
|
|
|
|
(cd $out/include && ln -s wx-*/* .)
|
|
|
|
";
|
|
|
|
|
2016-09-12 00:24:51 +03:00
|
|
|
passthru = {
|
|
|
|
inherit compat24 compat26 unicode;
|
|
|
|
gtk = gtk2;
|
|
|
|
};
|
2012-01-13 14:31:58 +04:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-11-04 20:18:48 +03:00
|
|
|
|
|
|
|
meta = {
|
2016-12-30 21:16:20 +03:00
|
|
|
platforms = with stdenv.lib.platforms; darwin ++ linux;
|
2014-11-04 20:18:48 +03:00
|
|
|
};
|
2011-03-27 10:44:34 +04:00
|
|
|
}
|