2006-09-14 13:24:06 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, xftSupport ? true, libXft ? null
|
|
|
|
, xrenderSupport ? true, libXrender ? null
|
|
|
|
, xrandrSupport ? true, libXrandr ? null, randrproto ? null
|
2009-11-03 21:55:53 +00:00
|
|
|
, xineramaSupport ? true, libXinerama ? null
|
2007-03-26 18:15:32 +00:00
|
|
|
, cursorSupport ? true, libXcursor ? null
|
2005-01-20 14:23:34 +00:00
|
|
|
, threadSupport ? true
|
2012-01-07 17:06:49 +00:00
|
|
|
, mysqlSupport ? false, mysql ? null
|
2006-09-14 13:24:06 +00:00
|
|
|
, openglSupport ? false, mesa ? null, libXmu ? null
|
2015-09-15 09:13:22 +00:00
|
|
|
, xlibsWrapper, xextproto, zlib, libjpeg, libpng, which
|
2005-01-19 22:51:27 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert xftSupport -> libXft != null;
|
2006-09-14 13:24:06 +00:00
|
|
|
assert xrenderSupport -> xftSupport && libXrender != null;
|
|
|
|
assert xrandrSupport -> libXrandr != null && randrproto != null;
|
2007-03-26 18:15:32 +00:00
|
|
|
assert cursorSupport -> libXcursor != null;
|
2005-01-22 00:19:27 +00:00
|
|
|
assert mysqlSupport -> mysql != null;
|
2006-09-14 13:24:06 +00:00
|
|
|
assert openglSupport -> mesa != null && libXmu != null;
|
2005-01-19 22:51:27 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-03-26 13:39:50 +00:00
|
|
|
name = "qt-3.3.8";
|
2005-01-19 22:51:27 +00:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
2009-04-23 13:31:10 +00:00
|
|
|
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2005-01-19 22:51:27 +00:00
|
|
|
src = fetchurl {
|
2016-07-16 15:39:03 +00:00
|
|
|
url = http://download.qt.io/archive/qt/3/qt-x11-free-3.3.8.tar.bz2;
|
2007-03-26 13:39:50 +00:00
|
|
|
sha256 = "0jd4g3bwkgk2s4flbmgisyihm7cam964gzb3pawjlkhas01zghz8";
|
2005-01-19 22:51:27 +00:00
|
|
|
};
|
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ which ];
|
2015-09-15 09:13:22 +00:00
|
|
|
propagatedBuildInputs = [libpng xlibsWrapper libXft libXrender zlib libjpeg];
|
2005-01-19 22:51:27 +00:00
|
|
|
|
2006-09-14 13:24:06 +00:00
|
|
|
configureFlags = "
|
|
|
|
-v
|
|
|
|
-system-zlib -system-libpng -system-libjpeg
|
2007-03-26 18:15:32 +00:00
|
|
|
-qt-gif
|
|
|
|
-I${xextproto}/include
|
2006-09-14 13:24:06 +00:00
|
|
|
${if openglSupport then "-dlopen-opengl
|
|
|
|
-L${mesa}/lib -I${mesa}/include
|
2016-07-16 15:39:03 +00:00
|
|
|
-L${libXmu.out}/lib -I${libXmu.dev}/include" else ""}
|
2006-09-14 13:24:06 +00:00
|
|
|
${if threadSupport then "-thread" else "-no-thread"}
|
2016-07-16 15:39:03 +00:00
|
|
|
${if xrenderSupport then "-xrender -L${libXrender.out}/lib -I${libXrender.dev}/include" else "-no-xrender"}
|
2006-09-14 13:24:06 +00:00
|
|
|
${if xrandrSupport then "-xrandr
|
2016-07-16 15:39:03 +00:00
|
|
|
-L${libXrandr.out}/lib -I${libXrandr.dev}/include
|
2006-09-14 13:24:06 +00:00
|
|
|
-I${randrproto}/include" else "-no-xrandr"}
|
2016-07-16 15:39:03 +00:00
|
|
|
${if xineramaSupport then "-xinerama -L${libXinerama.out}/lib -I${libXinerama.dev}/include" else "-no-xinerama"}
|
|
|
|
${if cursorSupport then "-L${libXcursor.out}/lib -I${libXcursor.dev}/include" else ""}
|
2015-04-01 23:39:50 +00:00
|
|
|
${if mysqlSupport then "-qt-sql-mysql -L${mysql.lib}/lib/mysql -I${mysql.lib}/include/mysql" else ""}
|
2006-09-14 13:24:06 +00:00
|
|
|
${if xftSupport then "-xft
|
2015-10-05 10:23:02 +00:00
|
|
|
-L${libXft.out}/lib -I${libXft.dev}/include
|
2015-10-15 16:59:39 +00:00
|
|
|
-L${libXft.freetype.out}/lib -I${libXft.freetype.dev}/include
|
2015-10-05 10:23:02 +00:00
|
|
|
-L${libXft.fontconfig.lib}/lib -I${libXft.fontconfig.dev}/include" else "-no-xft"}
|
2006-09-14 13:24:06 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
# Don't strip everything so we can get useful backtraces.
|
|
|
|
./strip.patch
|
2013-06-25 07:17:34 +00:00
|
|
|
|
2006-09-14 13:24:06 +00:00
|
|
|
# Build on NixOS.
|
|
|
|
./qt-pwd.patch
|
2013-06-25 07:17:34 +00:00
|
|
|
|
2006-09-14 13:24:06 +00:00
|
|
|
# randr.h and Xrandr.h need not be in the same prefix.
|
|
|
|
./xrandr.patch
|
2012-02-26 21:27:15 +00:00
|
|
|
|
|
|
|
# Make it build with gcc 4.6.0
|
|
|
|
./qt3-gcc4.6.0.patch
|
2006-09-14 13:24:06 +00:00
|
|
|
];
|
2006-09-14 13:30:47 +00:00
|
|
|
|
|
|
|
passthru = {inherit mysqlSupport;};
|
2005-01-19 22:51:27 +00:00
|
|
|
}
|