f8df44abb1
svn path=/nixpkgs/trunk/; revision=19631
83 lines
2.2 KiB
Nix
83 lines
2.2 KiB
Nix
{ stdenv, fetchurl, lib
|
|
, libXft, libXrender, randrproto, xextproto, libXinerama, xineramaproto, libXcursor, libXmu
|
|
, libXext, libXfixes, inputproto, fixesproto, libXrandr, freetype, fontconfig
|
|
, zlib, libjpeg, mysql, libpng, which, mesa, openssl, dbus, cups, pkgconfig, libtiff, glib
|
|
, buildDemos ? false, buildExamples ? false, keepDocumentation ? false}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "qt-4.6.1";
|
|
|
|
src = fetchurl {
|
|
url = ftp://ftp.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.6.1.tar.gz;
|
|
sha256 = "1id05qfxn5rxds3yngn3nbd7dnjmvmhzgjf0x568aii5iadv712c";
|
|
};
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
preConfigure = ''
|
|
export LD_LIBRARY_PATH="`pwd`/lib:$LD_LIBRARY_PATH"
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
libXft
|
|
libXrender
|
|
libXrandr
|
|
randrproto
|
|
xextproto
|
|
libXinerama
|
|
xineramaproto
|
|
libXcursor
|
|
zlib
|
|
libjpeg
|
|
mysql
|
|
libpng
|
|
which
|
|
mesa
|
|
libXmu
|
|
openssl
|
|
dbus.libs
|
|
cups
|
|
pkgconfig
|
|
libXext
|
|
freetype
|
|
fontconfig
|
|
inputproto
|
|
fixesproto
|
|
libXfixes
|
|
glib
|
|
libtiff
|
|
];
|
|
|
|
prefixKey = "-prefix ";
|
|
|
|
configureFlags = ''
|
|
-v -no-separate-debug-info -release
|
|
-system-zlib -system-libpng -system-libjpeg -fast
|
|
-qt-gif -confirm-license -opensource
|
|
-opengl -xrender -xrandr -xinerama -xcursor -qt-sql-mysql
|
|
-qdbus -cups -glib -xfixes -dbus-linked
|
|
-fontconfig -I${freetype}/include/freetype2
|
|
${if buildDemos == true then "" else "-nomake demos"}
|
|
${if buildExamples == true then "" else "-nomake examples"}
|
|
'';
|
|
|
|
patchPhase = ''
|
|
substituteInPlace configure --replace /bin/pwd pwd
|
|
sed -e 's@/usr@/FOO@' -i config.tests/*/*.test -i mkspecs/*/*.conf
|
|
'';
|
|
|
|
# Remove the documentation: it takes up >= 130 MB, which is more
|
|
# than half of the installed size. Ideally we should put this in a
|
|
# separate package (as well as the Qt Designer).
|
|
postInstall = ''
|
|
${if keepDocumentation == false then "rm -rf $out/doc" else ""}
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://www.qtsoftware.com/downloads/opensource/appdev/linux-x11-cpp;
|
|
description = "A cross-platform application framework for C++";
|
|
license = "GPL/LGPL";
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|