94fd6da74e
not-kde reason - let's see how hydra tests it) svn path=/nixpkgs/trunk/; revision=22441
34 lines
1.1 KiB
Nix
34 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, enchant
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdelibs-4.4.5";
|
|
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.4.5/src/kdelibs-4.4.5.tar.bz2;
|
|
sha256 = "11b0iif35bn8izr94590bgxkyy8ri572mjqlajzh988bww1r5mqi";
|
|
};
|
|
|
|
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
|
|
libXScrnSaver enchant
|
|
automoc4 phonon strigi soprano qca2 attica polkit_qt
|
|
];
|
|
|
|
propagatedBuildInputs = [ shared_desktop_ontologies ];
|
|
|
|
# cmake fails to find acl.h because of C++-style comment
|
|
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 ];
|
|
};
|
|
}
|