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

kde.package rec {
  name = with meta.kde; "${module}-${release}";

  buildInputs = [ cmake qt4 perl libxml2 libxslt boost shared_mime_info kdelibs
    kdepimlibs automoc4 phonon akonadi soprano strigi gettext ];

  src = fetchurl {
    url = "mirror://kde/unstable/kdepim/${meta.kde.release}/src/${name}.tar.bz2";
    sha256 = "0gsp1yycjb7a3p285yqhs6v9rsrpbq0wfq3jhz7ky306692lrxig";
  };

  meta = {
    description = "KDE PIM runtime";
    homepage = http://www.kde.org;
    license = "GPL";
    kde = {
      release = "4.5.94.1";
      module = "kdepim-runtime";
    };
  };
}