2011-12-24 22:52:08 +01:00
|
|
|
{ stdenv, fetchurl, substituteAll
|
|
|
|
, libXrender, libXinerama, libXcursor, libXmu , libXv, libXext
|
|
|
|
, libXfixes, libXrandr, libSM, freetype, fontconfig
|
|
|
|
, zlib, libjpeg, libpng, libmng, which, mesa, openssl, dbus, cups, pkgconfig
|
|
|
|
, libtiff, glib, icu
|
|
|
|
, mysql, postgresql, sqlite
|
|
|
|
, perl, coreutils, libXi
|
2012-03-17 21:57:28 +01:00
|
|
|
, buildMultimedia ? true, alsaLib, gstreamer, gst_plugins_base
|
|
|
|
, buildWebkit ? true
|
2011-12-24 22:52:08 +01:00
|
|
|
, flashplayerFix ? true, gdk_pixbuf
|
|
|
|
, gtkStyle ? false, libgnomeui, gtk, GConf, gnome_vfs
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2012-04-05 15:50:34 +02:00
|
|
|
v = "4.8.1";
|
2011-12-24 22:52:08 +01:00
|
|
|
in
|
|
|
|
|
|
|
|
# TODO:
|
|
|
|
# * move some plugins (e.g., SQL plugins) to dedicated derivations to avoid
|
|
|
|
# false build-time dependencies
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "qt-${v}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.qt.nokia.com/qt/source/qt-everywhere-opensource-src-${v}.tar.gz";
|
2012-04-05 15:50:34 +02:00
|
|
|
sha256 = "1s3sv2p8q4bjy0h6r81gdnd64apdx8kwm5jc7rxavd21m8v1m1gg";
|
2011-12-24 22:52:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [ ( substituteAll {
|
|
|
|
src = ./dlopen-absolute-paths.diff;
|
|
|
|
inherit cups icu libXfixes;
|
|
|
|
glibc = stdenv.gcc.libc;
|
|
|
|
})
|
|
|
|
] ++ stdenv.lib.optional gtkStyle (
|
|
|
|
substituteAll {
|
|
|
|
src = ./dlopen-gtkstyle.diff;
|
|
|
|
# substituteAll ignores env vars starting with capital letter
|
|
|
|
gconf = GConf;
|
|
|
|
inherit gnome_vfs libgnomeui gtk;
|
|
|
|
}
|
|
|
|
) ++ stdenv.lib.optional flashplayerFix (
|
|
|
|
substituteAll {
|
|
|
|
src = ./dlopen-webkit-nsplugin.diff;
|
|
|
|
inherit gtk gdk_pixbuf;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
preConfigure =
|
|
|
|
''
|
|
|
|
export LD_LIBRARY_PATH="`pwd`/lib:$LD_LIBRARY_PATH"
|
|
|
|
configureFlags+="
|
|
|
|
-docdir $out/share/doc/${name}
|
|
|
|
-plugindir $out/lib/qt4/plugins
|
|
|
|
-importdir $out/lib/qt4/imports
|
|
|
|
-examplesdir $out/share/doc/${name}/examples
|
|
|
|
-demosdir $out/share/doc/${name}/demos
|
|
|
|
-datadir $out/share/${name}
|
|
|
|
-translationdir $out/share/${name}/translations
|
|
|
|
"
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags =
|
|
|
|
''
|
|
|
|
-v -no-separate-debug-info -release -no-fast -confirm-license -opensource
|
|
|
|
|
|
|
|
-opengl -xrender -xrandr -xinerama -xcursor -xinput -xfixes -fontconfig
|
2012-03-17 21:57:28 +01:00
|
|
|
-qdbus -${if cups == null then "no-" else ""}cups -glib -dbus-linked -openssl-linked
|
2011-12-24 22:52:08 +01:00
|
|
|
|
2012-03-17 21:57:28 +01:00
|
|
|
${if mysql != null then "-plugin" else "-no"}-sql-mysql -system-sqlite
|
2011-12-24 22:52:08 +01:00
|
|
|
|
|
|
|
-exceptions -xmlpatterns
|
|
|
|
|
|
|
|
-make libs -make tools -make translations
|
|
|
|
-nomake demos -nomake examples -nomake docs
|
|
|
|
|
2012-03-17 21:57:28 +01:00
|
|
|
-no-phonon ${if buildWebkit then "" else "-no"}-webkit ${if buildMultimedia then "" else "-no"}-multimedia -audio-backend
|
2011-12-24 22:52:08 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
propagatedBuildInputs =
|
|
|
|
[ libXrender libXrandr libXinerama libXcursor libXext libXfixes
|
|
|
|
libXv libXi libSM mesa
|
2012-03-17 21:57:28 +01:00
|
|
|
] ++ (stdenv.lib.optional (buildWebkit || buildMultimedia) alsaLib)
|
|
|
|
++ [ zlib libpng openssl dbus.libs freetype fontconfig glib ]
|
|
|
|
++ (stdenv.lib.optionals (buildWebkit || buildMultimedia)
|
|
|
|
[ gstreamer gst_plugins_base ]);
|
2011-12-24 22:52:08 +01:00
|
|
|
|
|
|
|
# The following libraries are only used in plugins
|
|
|
|
buildInputs = [ cups # Qt dlopen's libcups instead of linking to it
|
2011-12-25 17:22:36 +01:00
|
|
|
mysql postgresql sqlite libjpeg libmng libtiff icu ]
|
|
|
|
++ stdenv.lib.optionals gtkStyle [ gtk gdk_pixbuf ];
|
2011-12-24 22:52:08 +01:00
|
|
|
|
|
|
|
buildNativeInputs = [ perl pkgconfig which ];
|
|
|
|
|
|
|
|
prefixKey = "-prefix ";
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace configure --replace /bin/pwd pwd
|
|
|
|
substituteInPlace src/corelib/global/global.pri --replace /bin/ls ${coreutils}/bin/ls
|
|
|
|
sed -e 's@/\(usr\|opt\)/@/var/empty/@g' -i config.tests/*/*.test -i mkspecs/*/*.conf
|
|
|
|
'';
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://qt.nokia.com/products;
|
|
|
|
description = "A cross-platform application framework for C++";
|
|
|
|
license = "GPL/LGPL";
|
|
|
|
maintainers = with maintainers; [ urkud sander ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|