2011-07-13 20:15:57 +02:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, shared_mime_info, libxslt, boost, automoc4, soprano }:
|
2011-07-07 22:48:51 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-07-13 20:15:57 +02:00
|
|
|
name = "akonadi-1.6.0";
|
|
|
|
|
2011-07-07 22:48:51 +02:00
|
|
|
src = fetchurl {
|
2011-07-13 20:15:57 +02:00
|
|
|
url = "mirror://kde/stable/akonadi/src/${name}.tar.bz2";
|
|
|
|
sha256 = "0bzr6476yyinvdhrn9z8ynmi0py9zs3dfhwk3dvqxysk87svk71f";
|
2011-07-07 22:48:51 +02:00
|
|
|
};
|
2011-07-13 20:15:57 +02:00
|
|
|
|
|
|
|
buildInputs = [ cmake qt4 soprano automoc4 shared_mime_info libxslt boost ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-07-07 22:48:51 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "KDE PIM Storage Service";
|
|
|
|
license = "LGPL";
|
|
|
|
homepage = http://pim.kde.org/akonadi;
|
|
|
|
maintainers = [ maintainers.sander maintainers.urkud ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|