e0ff817c40
I updated cmake to use CMAKE_PREFIX_PATH instead of CMAKE_INCLUDE_PATH and CMAKE_LIBRARY_PATH. There were some expressions in kde that required CMAKE_PREFIX_PATH, and now they are not anymore a special case. I updated most kde-4.4 files to point to kde-4.4.0 sources instead of 4.3.4 . svn path=/nixpkgs/trunk/; revision=19965
18 lines
592 B
Nix
18 lines
592 B
Nix
{stdenv, fetchurl, lib, cmake, qt4, shared_mime_info, libxslt, boost, mysql, automoc4, soprano}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "akonadi-1.3.1";
|
|
src = fetchurl {
|
|
url = http://download.akonadi-project.org/akonadi-1.3.1.tar.bz2;
|
|
sha256 = "1pbn6sviipxxpx80cspncfc3nlz047nryfbv8xzfz5811p19k7jb";
|
|
};
|
|
includeAllQtDirs=true;
|
|
buildInputs = [ cmake qt4 shared_mime_info libxslt boost mysql automoc4 soprano ];
|
|
meta = {
|
|
description = "KDE PIM Storage Service";
|
|
license = "LGPL";
|
|
homepage = http://pim.kde.org/akonadi;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|