summary refs log tree commit diff
path: root/pkgs/applications/kde/kalarmcal.nix
blob: 46832477cc60b7a8c8eb4a40f812952744f4389e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  akonadi, kcalcore, kdelibs4support, kholidays, kidentitymanagement,
  kpimtextedit, kcalutils
}:

mkDerivation {
  name = "kalarmcal";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    akonadi kcalcore kdelibs4support kholidays kidentitymanagement kpimtextedit kcalutils
  ];
  outputs = [ "out" "dev" ];
}