about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kcalutils.nix
blob: 1fce68e7f46472711a1a328768122db73f22b6f9 (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, kdelibs4support,
  kidentitymanagement, kpimtextedit,
}:

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