2006-09-14 13:24:06 +00:00
|
|
|
{ stdenv, fetchurl
|
|
|
|
, xftSupport ? true, libXft ? null
|
|
|
|
, xrenderSupport ? true, libXrender ? null
|
2018-12-31 03:40:47 +00:00
|
|
|
, xrandrSupport ? true, libXrandr ? 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
|
2019-02-03 15:33:16 +00:00
|
|
|
, libGLSupported
|
|
|
|
, openglSupport ? libGLSupported, libGLU_combined ? null, libXmu ? null
|
2018-12-31 03:40:47 +00:00
|
|
|
, xlibsWrapper, xorgproto, 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;
|
2018-12-31 03:40:47 +00:00
|
|
|
assert xrandrSupport -> libXrandr != 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;
|
2018-02-24 13:12:44 +00:00
|
|
|
assert openglSupport -> libGLU_combined != 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
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-12 15:10:52 +00:00
|
|
|
|
2018-08-31 21:24:28 +00:00
|
|
|
configureFlags = let
|
|
|
|
mk = cond: name: "-${stdenv.lib.optionalString (!cond) "no-"}${name}";
|
|
|
|
in [
|
|
|
|
"-v"
|
|
|
|
"-system-zlib" "-system-libpng" "-system-libjpeg"
|
|
|
|
"-qt-gif"
|
2018-12-31 03:40:47 +00:00
|
|
|
"-I${xorgproto}/include"
|
2018-08-31 21:24:28 +00:00
|
|
|
(mk threadSupport "thread")
|
|
|
|
(mk xrenderSupport "xrender")
|
|
|
|
(mk xrandrSupport "xrandr")
|
|
|
|
(mk xineramaSupport "xinerama")
|
|
|
|
(mk xrandrSupport "xrandr")
|
|
|
|
(mk xftSupport "xft")
|
|
|
|
] ++ stdenv.lib.optionals openglSupport [
|
|
|
|
"-dlopen-opengl"
|
|
|
|
"-L${libGLU_combined}/lib" "-I${libGLU_combined}/include"
|
|
|
|
"-L${libXmu.out}/lib" "-I${libXmu.dev}/include"
|
|
|
|
] ++ stdenv.lib.optionals xrenderSupport [
|
|
|
|
"-L${libXrender.out}/lib" "-I${libXrender.dev}/include"
|
|
|
|
] ++ stdenv.lib.optionals xrandrSupport [
|
|
|
|
"-L${libXrandr.out}/lib" "-I${libXrandr.dev}/include"
|
|
|
|
] ++ stdenv.lib.optionals xineramaSupport [
|
|
|
|
"-L${libXinerama.out}/lib" "-I${libXinerama.dev}/include"
|
|
|
|
] ++ stdenv.lib.optionals cursorSupport [
|
|
|
|
"-L${libXcursor.out}/lib -I${libXcursor.dev}/include"
|
|
|
|
] ++ stdenv.lib.optionals mysqlSupport [
|
|
|
|
"-qt-sql-mysql" "-L${mysql.connector-c}/lib/mysql" "-I${mysql.connector-c}/include/mysql"
|
|
|
|
] ++ stdenv.lib.optionals xftSupport [
|
|
|
|
"-L${libXft.out}/lib" "-I${libXft.dev}/include"
|
|
|
|
"-L${libXft.freetype.out}/lib" "-I${libXft.freetype.dev}/include"
|
|
|
|
"-L${libXft.fontconfig.lib}/lib" "-I${libXft.fontconfig.dev}/include"
|
|
|
|
];
|
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;};
|
2016-08-02 16:06:29 +00:00
|
|
|
|
2018-10-27 13:02:30 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = with licenses; [ gpl2 qpl ];
|
|
|
|
platforms = platforms.linux;
|
2016-08-02 16:06:29 +00:00
|
|
|
};
|
2005-01-19 22:51:27 +00:00
|
|
|
}
|