summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadi-contacts.nix
blob: 76c4f3f2c5079b016df76be4159fa4a20374b233 (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
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules,
  qtwebengine,
  grantlee, grantleetheme,
  kcmutils, kdbusaddons, ki18n, kiconthemes, kio, kitemmodels, ktextwidgets,
  prison, akonadi, akonadi-mime, kcontacts, kmime, libkleo,
}:

mkDerivation {
  pname = "akonadi-contacts";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    qtwebengine
    grantlee grantleetheme
    kcmutils kdbusaddons ki18n kiconthemes kio kitemmodels ktextwidgets prison
    akonadi-mime kcontacts kmime libkleo
  ];
  propagatedBuildInputs = [ akonadi ];
  outputs = [ "out" "dev" ];
}