summary refs log tree commit diff
path: root/pkgs/applications/kde/incidenceeditor.nix
blob: 9c248f199a5d211377de67f4974856c73e2b5e7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  akonadi, akonadi-mime, calendarsupport, eventviews,
  kdiagram, kldap, kmime, pimcommon, qtbase
}:

mkDerivation {
  pname = "incidenceeditor";
  meta = {
    license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    akonadi akonadi-mime calendarsupport eventviews kdiagram
    kldap kmime pimcommon qtbase
  ];
  outputs = [ "out" "dev" ];
}