summary refs log tree commit diff
path: root/pkgs/applications/kde/kcalutils.nix
blob: 7da9739aad1d63717e7982c5a0e0d70eee82f1af (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,
  grantlee, kcalendarcore, kconfig, kontactinterface, kcoreaddons,
  kidentitymanagement, kpimtextedit,
}:

mkDerivation {
  pname = "kcalutils";
  meta = {
    license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    grantlee kcalendarcore kconfig kontactinterface kcoreaddons
    kidentitymanagement kpimtextedit
  ];
  outputs = [ "out" "dev" ];
}