summary refs log blame commit diff
path: root/pkgs/applications/kde/kongress.nix
blob: be5efcdb9e23af4fd2aabd178ec8da33e5090dd7 (plain) (tree)



































                                                            
{ 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 = "A companion application for conferences";
    homepage = "https://apps.kde.org/kongress/";
    license = lib.licenses.gpl3;
    maintainers = [];
  };
}