2009-09-09 12:53:32 +02:00
|
|
|
{ stdenv, fetchurl, cmake, lib, perl
|
2009-08-15 16:02:49 +02:00
|
|
|
, qt4, bzip2, pcre, fam, libxml2, libxslt, shared_mime_info, giflib, jasper
|
2009-09-09 12:53:32 +02:00
|
|
|
, xz, flex, bison, openexr, aspell, avahi
|
2009-08-15 16:02:49 +02:00
|
|
|
, automoc4, phonon, strigi, soprano
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-09-09 12:53:32 +02:00
|
|
|
name = "kdelibs-4.3.1";
|
2009-08-15 16:02:49 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2009-09-09 12:53:32 +02:00
|
|
|
url = mirror://kde/stable/4.3.1/src/kdelibs-4.3.1.tar.bz2;
|
|
|
|
sha1 = "511532852caca9302c643fded4013ef1f57d5433";
|
2009-08-15 16:02:49 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
includeAllQtDirs = true;
|
|
|
|
|
|
|
|
buildInputs = [
|
2009-09-09 12:53:32 +02:00
|
|
|
cmake perl qt4 stdenv.gcc.libc xz flex bison bzip2 pcre fam libxml2 libxslt
|
2009-08-15 16:02:49 +02:00
|
|
|
shared_mime_info giflib jasper /* openexr */ aspell avahi
|
|
|
|
automoc4 phonon strigi soprano
|
|
|
|
];
|
2009-09-09 12:53:32 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "KDE libraries";
|
|
|
|
license = "LGPL";
|
|
|
|
homepage = http://www.kde.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
2009-08-15 16:02:49 +02:00
|
|
|
}
|