summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix')
-rw-r--r--pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix
new file mode 100644
index 00000000000..2a8762c814f
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix
@@ -0,0 +1,20 @@
+{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive
+, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
+, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio
+, knotifications, kpackage, kservice, kwindowsystem, kxmlgui
+, makeQtWrapper, qtscript, qtx11extras
+}:
+
+kdeFramework {
+  name = "plasma-framework";
+  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+  nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
+  propagatedBuildInputs = [
+    kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons
+    kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications
+    kpackage kservice kwindowsystem kxmlgui qtscript qtx11extras
+  ];
+  postInstall = ''
+    wrapQtProgram "$out/bin/plasmapkg2"
+  '';
+}