about summary refs log tree commit diff
path: root/pkgs/applications/kde/calindori.nix
blob: c1e9f4d59b18b7cd0c4e5000e6033c481d60107c (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
37
38
39
40
41
42
43
44
45
46
{ lib
, mkDerivation

, cmake
, extra-cmake-modules

, kcalendarcore
, kconfig
, kcoreaddons
, kdbusaddons
, ki18n
, kirigami2
, knotifications
, kpeople
, kservice
, qtquickcontrols2
}:

mkDerivation rec {
  pname = "calindori";

  nativeBuildInputs = [
    cmake
    extra-cmake-modules
  ];

  buildInputs = [
    kcalendarcore
    kconfig
    kcoreaddons
    kdbusaddons
    ki18n
    kirigami2
    knotifications
    kpeople
    kservice
    qtquickcontrols2
  ];

  meta = with lib; {
    description = "Calendar for Plasma Mobile";
    homepage = "https://invent.kde.org/plasma-mobile/calindori";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ ];
  };
}