2005-01-19 14:51:27 -08:00
|
|
|
{ xftSupport ? true
|
|
|
|
, xrenderSupport ? true
|
2005-01-20 06:23:34 -08:00
|
|
|
, threadSupport ? true
|
2005-01-21 16:19:27 -08:00
|
|
|
, mysqlSupport ? true
|
|
|
|
, stdenv, fetchurl, x11, libXft ? null, libXrender ? null, mysql ? null
|
2005-01-20 01:00:08 -08:00
|
|
|
, zlib, libjpeg, libpng, which
|
2005-01-19 14:51:27 -08:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert xftSupport -> libXft != null;
|
|
|
|
assert xrenderSupport -> xftSupport && libXft != null;
|
2005-01-21 16:19:27 -08:00
|
|
|
assert mysqlSupport -> mysql != null;
|
2005-01-19 14:51:27 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2005-12-06 13:35:07 -08:00
|
|
|
name = "qt-3.3.5";
|
2005-01-19 14:51:27 -08:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
2005-02-15 09:44:45 -08:00
|
|
|
substitute = ../../../build-support/substitute/substitute.sh;
|
|
|
|
hook = ./setup-hook.sh;
|
2005-01-19 14:51:27 -08:00
|
|
|
src = fetchurl {
|
2005-12-06 13:35:07 -08:00
|
|
|
url = http://wftp.tu-chemnitz.de/pub/Qt/qt/source/qt-x11-free-3.3.5.tar.bz2;
|
|
|
|
md5 = "05d04688c0c0230ed54e89102d689ca4";
|
2005-01-19 14:51:27 -08:00
|
|
|
};
|
|
|
|
|
2005-01-20 01:00:08 -08:00
|
|
|
buildInputs = [x11 libXft libXrender zlib libjpeg libpng which];
|
2005-01-19 14:51:27 -08:00
|
|
|
|
2005-03-02 03:31:49 -08:00
|
|
|
# Don't strip everything so we can get useful backtraces.
|
2005-11-12 11:07:37 -08:00
|
|
|
patches = [./strip.patch ./qt-pwd.patch];
|
2005-03-02 03:31:49 -08:00
|
|
|
|
2005-01-20 06:23:34 -08:00
|
|
|
inherit threadSupport xftSupport libXft xrenderSupport libXrender;
|
2005-11-01 03:58:06 -08:00
|
|
|
inherit mysqlSupport;
|
|
|
|
mysql = if mysqlSupport then mysql else null;
|
2005-01-19 14:51:27 -08:00
|
|
|
inherit (libXft) freetype fontconfig;
|
|
|
|
}
|