kongress: init

This commit is contained in:
K900 2023-03-18 01:39:35 +03:00
parent b26bcd8dd3
commit 0f538b4dff
2 changed files with 37 additions and 0 deletions

View File

@ -246,6 +246,7 @@ let
kclock = callPackage ./kclock.nix {};
keysmith = callPackage ./keysmith.nix {};
koko = callPackage ./koko.nix {};
kongress = callPackage ./kongress.nix {};
krecorder = callPackage ./krecorder.nix {};
ktrip = callPackage ./ktrip.nix {};
kweather = callPackage ./kweather.nix {};

View File

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