about summary refs log tree commit diff
path: root/pkgs/applications/kde/kongress.nix
blob: 5738569bae9009ae7d6b02a09b12aefac745af33 (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
{ mkDerivation
, lib
, extra-cmake-modules
, qtquickcontrols2
, kcalendarcore
, kconfig
, kcoreaddons
, kdbusaddons
, kirigami2
, ki18n
, knotifications
}:

mkDerivation {
  pname = "kongress";

  nativeBuildInputs = [ extra-cmake-modules ];

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

  meta = {
    description = "Companion application for conferences";
    homepage = "https://apps.kde.org/kongress/";
    license = lib.licenses.gpl3;
    maintainers = [];
  };
}