summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.3/pim-runtime/default.nix
blob: c20f61c39516cf01f2ee7e79f197410d15cce512 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, lib, cmake, qt4, perl, libxml2, libxslt, boost, shared_mime_info
, kdelibs, kdelibs_experimental, kdepimlibs
, automoc4, phonon, akonadi, soprano, strigi}:

stdenv.mkDerivation {
  name = "kdepim-runtime-4.3.1";
  src = fetchurl {
    url = mirror://kde/stable/4.3.1/src/kdepim-runtime-4.3.1.tar.bz2;
    sha1 = "c39b0fc1d3721fb8c6074ba6a174ad8716c6c604";
  };
  buildInputs = [ cmake qt4 perl libxml2 libxslt boost shared_mime_info
                  kdelibs kdelibs_experimental kdepimlibs
		  automoc4 phonon akonadi soprano strigi ];
  CMAKE_PREFIX_PATH=kdepimlibs;
  includeAllQtDirs=true;
  meta = {
    description = "KDE PIM runtime";
    homepage = http://www.kde.org;
    license = "GPL";
    maintainers = [ lib.maintainers.sander ];
  };
}