summary refs log tree commit diff
path: root/pkgs/applications/maui/mauikit-calendar.nix
blob: 508319f1616d484ea1f6e4f6c0edffb31d1b7eb6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, mkDerivation
, cmake
, extra-cmake-modules
, mauikit
, qtquickcontrols2
, akonadi
, akonadi-contacts
, calendarsupport
, eventviews
}:

mkDerivation {
  pname = "mauikit-calendar";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    akonadi
    akonadi-contacts
    calendarsupport
    eventviews
    mauikit
    qtquickcontrols2
  ];

  meta = with lib; {
    homepage = "https://invent.kde.org/maui/mauikit-calendar";
    description = "Calendar support components for Maui applications";
    license = licenses.lgpl21Plus;
    maintainers = with maintainers; [ onny ];
  };
}