summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadi.nix
blob: 03483e5ec0d15c090cb8c2457662f24165a3619a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  kdeApp, lib,
  ecm,
  kcompletion, kconfigwidgets, kdbusaddons, kdesignerplugin, kiconthemes,
  kio,
  boost, kitemmodels
}:

kdeApp {
  name = "akonadi";
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ ecm ];
  buildInputs = [
    kcompletion kconfigwidgets kdbusaddons kdesignerplugin kiconthemes kio
  ];
  propagatedBuildInputs = [ boost kitemmodels ];
}