nixpkgs/pkgs/desktops/kde-4.4/libs/default.nix
Sander van der Burg 740a6fe281 - Some updates to KDE 4.4. kdelibs is still broken though
- Updated eduke32 to use the new polymer renderer which is so cool :-)


svn path=/nixpkgs/trunk/; revision=19930
2010-02-11 13:34:28 +00:00

36 lines
1.1 KiB
Nix

{ stdenv, fetchurl, cmake, lib, perl
, qt4, bzip2, pcre, fam, libxml2, libxslt, shared_mime_info, giflib, jasper
, xz, flex, bison, openexr, aspell, avahi, kerberos, acl, attr, shared_desktop_ontologies, libXScrnSaver
, automoc4, phonon, strigi, soprano, qca2, attica, polkit_qt
}:
stdenv.mkDerivation {
name = "kdelibs-4.4.0";
src = fetchurl {
url = mirror://kde/stable/4.4.0/src/kdelibs-4.4.0.tar.bz2;
sha256 = "1nf829k9mcnqf1jfsfjgb1dw6s0kh02sixxjcgmapccmmqx1p5ak";
};
includeAllQtDirs = true;
buildInputs = [
cmake perl qt4 stdenv.gcc.libc xz flex bison bzip2 pcre fam libxml2 libxslt
shared_mime_info giflib jasper /*openexr*/ aspell avahi kerberos acl attr
shared_desktop_ontologies libXScrnSaver
automoc4 phonon strigi soprano qca2 attica polkit_qt
];
CMAKE_PREFIX_PATH=shared_desktop_ontologies;
# I don't know why cmake does not find the acl files (but finds attr files)
cmakeFlags = [ "-DHAVE_ACL_LIBACL_H=ON" "-DHAVE_SYS_ACL_H=ON" ];
meta = {
description = "KDE libraries";
license = "LGPL";
homepage = http://www.kde.org;
maintainers = [ lib.maintainers.sander ];
};
}