summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadi-contacts.nix
blob: 830c9e6899ea5ee987c2c6e616c6b680e8c12f90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  kdeApp, lib,
  extra-cmake-modules,
  akonadi-mime, grantlee, kcontacts, kio, kitemmodels, kmime, qtwebengine,
  akonadi
}:

kdeApp {
  name = "akonadi-contacts";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    akonadi-mime grantlee kcontacts kio kitemmodels kmime qtwebengine
  ];
  propagatedBuildInputs = [ akonadi ];
}