ffcac187e8
I patched properly their own copy of cmake findqt4 module, the same way as we had to do in the cmake expression. The findqt4 patch we have is already filled in the cmake buglist, but it seems it is still not solved in in cmake 2.8.0 svn path=/nixpkgs/trunk/; revision=19960
17 lines
567 B
Nix
17 lines
567 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";
|
|
};
|
|
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 ];
|
|
};
|
|
}
|