2010-02-10 16:06:50 +01:00
|
|
|
{ stdenv, fetchurl, cmake, lib, perl
|
|
|
|
, qt4, bzip2, pcre, fam, libxml2, libxslt, shared_mime_info, giflib, jasper
|
2010-02-10 17:01:55 +01:00
|
|
|
, xz, flex, bison, openexr, aspell, avahi, kerberos, acl, attr, shared_desktop_ontologies, libXScrnSaver
|
2010-05-05 20:17:50 +02:00
|
|
|
, automoc4, phonon, strigi, soprano, qca2, attica, polkit_qt, enchant
|
2010-02-10 16:06:50 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2010-07-02 22:46:42 +02:00
|
|
|
name = "kdelibs-4.4.5";
|
2010-05-05 20:17:50 +02:00
|
|
|
|
2010-02-10 16:06:50 +01:00
|
|
|
src = fetchurl {
|
2010-07-02 22:46:42 +02:00
|
|
|
url = mirror://kde/stable/4.4.5/src/kdelibs-4.4.5.tar.bz2;
|
|
|
|
sha256 = "11b0iif35bn8izr94590bgxkyy8ri572mjqlajzh988bww1r5mqi";
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [
|
2010-08-22 00:05:03 +02:00
|
|
|
cmake perl qt4 xz flex bison bzip2 pcre fam libxml2 libxslt
|
2010-02-11 14:34:28 +01:00
|
|
|
shared_mime_info giflib jasper /*openexr*/ aspell avahi kerberos acl attr
|
2010-05-05 20:17:50 +02:00
|
|
|
libXScrnSaver enchant
|
2010-02-10 17:01:55 +01:00
|
|
|
automoc4 phonon strigi soprano qca2 attica polkit_qt
|
2010-02-10 16:06:50 +01:00
|
|
|
];
|
|
|
|
|
2010-08-22 00:05:03 +02:00
|
|
|
propagatedBuildInputs = [ stdenv.gcc.libc shared_desktop_ontologies ];
|
2010-02-12 18:53:51 +01:00
|
|
|
|
2010-05-05 20:17:50 +02:00
|
|
|
# cmake fails to find acl.h because of C++-style comment
|
2010-02-10 16:06:50 +01:00
|
|
|
cmakeFlags = [ "-DHAVE_ACL_LIBACL_H=ON" "-DHAVE_SYS_ACL_H=ON" ];
|
2010-05-05 20:17:50 +02:00
|
|
|
|
2010-02-10 16:06:50 +01:00
|
|
|
meta = {
|
|
|
|
description = "KDE libraries";
|
|
|
|
license = "LGPL";
|
|
|
|
homepage = http://www.kde.org;
|
2010-08-03 15:11:58 +02:00
|
|
|
maintainers = [ lib.maintainers.sander lib.maintainers.urkud ];
|
|
|
|
platforms = lib.platforms.linux;
|
2010-02-10 16:06:50 +01:00
|
|
|
};
|
|
|
|
}
|