about summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadi-contacts.nix
blob: 7acfa3a230b340e0c8e37452e08b9be0ae99843b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  kdeApp, lib,
  ecm,
  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 = [ ecm ];
  buildInputs = [
    akonadi-mime grantlee kcontacts kio kitemmodels kmime qtwebengine
  ];
  propagatedBuildInputs = [ akonadi ];
}