summary refs log tree commit diff
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
parentb26bcd8dd305cf1247dcfb677dbbb34c8109548c (diff)
downloadnixpkgs-0f538b4dff0b242b40d4409c6b0f313f28932923.tar
nixpkgs-0f538b4dff0b242b40d4409c6b0f313f28932923.tar.gz
nixpkgs-0f538b4dff0b242b40d4409c6b0f313f28932923.tar.bz2
nixpkgs-0f538b4dff0b242b40d4409c6b0f313f28932923.tar.lz
nixpkgs-0f538b4dff0b242b40d4409c6b0f313f28932923.tar.xz
nixpkgs-0f538b4dff0b242b40d4409c6b0f313f28932923.tar.zst
nixpkgs-0f538b4dff0b242b40d4409c6b0f313f28932923.zip
kongress: init
-rw-r--r--pkgs/applications/kde/default.nix1
-rw-r--r--pkgs/applications/kde/kongress.nix36
2 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/applications/kde/default.nix b/pkgs/applications/kde/default.nix
index 3ffb345a347..1ab8d203514 100644
--- a/pkgs/applications/kde/default.nix
+++ b/pkgs/applications/kde/default.nix
@@ -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 {};
diff --git a/pkgs/applications/kde/kongress.nix b/pkgs/applications/kde/kongress.nix
new file mode 100644
index 00000000000..be5efcdb9e2
--- /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 = [];
+  };
+}