2006-01-31 16:22:10 +01:00
|
|
|
{ stdenv, fetchurl, libX11, libXt, libXext, zlib, perl, qt, openssl, pcre
|
|
|
|
, pkgconfig, libjpeg, libpng, libtiff, libxml2, libxslt, libtool, expat
|
2006-08-12 00:26:55 +02:00
|
|
|
, freetype, bzip2
|
2006-01-31 16:22:10 +01:00
|
|
|
}:
|
2005-11-12 15:52:16 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-01-31 16:22:10 +01:00
|
|
|
name = "kdelibs-3.5.0";
|
2005-11-12 15:52:16 +01:00
|
|
|
src = fetchurl {
|
2006-01-31 17:37:40 +01:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/kdelibs-3.5.0.tar.bz2;
|
2006-01-31 16:22:10 +01:00
|
|
|
md5 = "2b11d654e2ea1a3cd16dcfdcbb7d1915";
|
2005-11-12 15:52:16 +01:00
|
|
|
};
|
|
|
|
|
2005-11-12 23:07:14 +01:00
|
|
|
inherit openssl libX11 libjpeg;
|
2005-11-12 15:52:16 +01:00
|
|
|
buildInputs = [
|
|
|
|
libX11 libXt libXext zlib perl qt openssl pcre
|
2006-01-31 16:22:10 +01:00
|
|
|
pkgconfig libjpeg libpng libtiff libxml2 libxslt expat
|
2006-08-12 00:26:55 +02:00
|
|
|
libtool freetype bzip2
|
2005-11-12 15:52:16 +01:00
|
|
|
];
|
2006-08-12 00:26:55 +02:00
|
|
|
|
|
|
|
configureFlags="
|
|
|
|
--without-arts
|
|
|
|
--with-ssl-dir=${openssl}
|
|
|
|
--with-extra-includes=${libjpeg}/include
|
|
|
|
--x-includes=${libX11}/include
|
|
|
|
--x-libraries=${libX11}/lib
|
|
|
|
";
|
2005-11-12 15:52:16 +01:00
|
|
|
}
|