summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadi-contacts.nix
blob: b09058b60be95fee3ce695267575917b9609fd00 (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,
  kdbusaddons, ki18n, kiconthemes, kio, kitemmodels, ktextwidgets, prison,
  akonadi, akonadi-mime, kcontacts, kmime,
}:

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