b42dfe40ec
Patch akonadiserver so as to correct the datadir parameter passed to mysql. Without this patch akonadiserver in KDE 4.4.5 would not start and consequently kmail would crash during start up. svn path=/nixpkgs/trunk/; revision=23154
19 lines
681 B
Nix
19 lines
681 B
Nix
{stdenv, fetchurl, cmake, qt4, shared_mime_info, libxslt, boost, mysql, automoc4, soprano}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "akonadi-1.3.85";
|
|
src = fetchurl {
|
|
url = "http://download.akonadi-project.org/${name}.tar.bz2";
|
|
sha256 = "1d2ancspavp4qg717hj56j1likb0ifdr65q1awbc2ghqqgd9znck";
|
|
};
|
|
patches = [ ./fix-broken-datadir-parameter.patch ];
|
|
buildInputs = [ cmake qt4 shared_mime_info libxslt boost mysql automoc4 soprano ];
|
|
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;
|
|
};
|
|
}
|