about summary refs log tree commit diff
path: root/pkgs/applications/kde/kongress.nix
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-03-18 01:39:35 +0300
committerK900 <me@0upti.me>2023-04-20 11:53:41 +0300
commit0f538b4dff0b242b40d4409c6b0f313f28932923 (patch)
tree56f368311c9cc5d2f9b34331cd78e079b17b646f /pkgs/applications/kde/kongress.nix
parentb26bcd8dd305cf1247dcfb677dbbb34c8109548c (diff)
kongress: init
Diffstat (limited to 'pkgs/applications/kde/kongress.nix')
-rw-r--r--pkgs/applications/kde/kongress.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/applications/kde/kongress.nix b/pkgs/applications/kde/kongress.nix
new file mode 100644
index 0000000000000..be5efcdb9e23a
--- /dev/null
+++ b/pkgs/applications/kde/kongress.nix
@@ -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 = [];
+  };
+}