summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix')
-rw-r--r--pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix
new file mode 100644
index 00000000000..7e301dd0f26
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix
@@ -0,0 +1,21 @@
+{ kdeFramework, lib
+, extra-cmake-modules
+, kcodecs
+, kconfig
+, kcoreaddons
+, kwindowsystem
+, phonon
+, qtx11extras
+}:
+
+kdeFramework {
+  name = "knotifications";
+  nativeBuildInputs = [ extra-cmake-modules ];
+  buildInputs = [
+    kcodecs kconfig kcoreaddons phonon
+  ];
+  propagatedBuildInputs = [ kwindowsystem qtx11extras ];
+  meta = {
+    maintainers = [ lib.maintainers.ttuegel ];
+  };
+}