e12b421add
merge cleanly right away (kde-4, kernel stuff) so it should be merged later. But the stdenv stuff is all there. svn path=/nixpkgs/branches/stdenv-updates-merge/; revision=10793
39 lines
1.4 KiB
Nix
39 lines
1.4 KiB
Nix
args: with args;
|
|
let common =
|
|
rec {
|
|
setupHook = ./setup-hook.sh;
|
|
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
|
|
-opengl -xrender -xrandr -xinerama -xcursor -qt-sql-mysql
|
|
-qdbus -cups -glib -xfixes
|
|
-fontconfig -I${freetype}/include/freetype2";
|
|
patchPhase = "sed -e 's@/bin/pwd@pwd@' -i configure; sed -e 's@/usr@/FOO@' -i config.tests/*/*.test -i mkspecs/*/*.conf";
|
|
}; in
|
|
rec {
|
|
trolltech = stdenv.mkDerivation (common // {
|
|
name = "qt-4.3.3";
|
|
src = fetchurl {
|
|
url = ftp://ftp.trolltech.com/qt/source/qt-x11-opensource-src-4.3.3.tar.gz;
|
|
sha256 = "0w0mfm0wwmbj1vnjn27rza1r9wj8k47mn9ril8swprffqnn4p4w9";
|
|
};
|
|
patchPhase = common.patchPhase;
|
|
});
|
|
kde = stdenv.mkDerivation (common // {
|
|
name = "qt-kde-4.3svn";
|
|
src = fetchsvn {
|
|
url = svn://anonsvn.kde.org/home/kde/trunk/qt-copy;
|
|
rev = "761061";
|
|
sha256 = "0i98kh435dj29ln1lnidxwivcha1m553s4l8c1h2b3yd4950w8x4";
|
|
};
|
|
patchPhase = "mkdir .svn; bash apply_patches;" + common.patchPhase;
|
|
});
|
|
default = kde;
|
|
}
|