summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix')
-rw-r--r--pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix
new file mode 100644
index 00000000000..af9a009b82e
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix
@@ -0,0 +1,18 @@
+{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig
+, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage
+, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig
+, qtdeclarative
+}:
+
+kdeFramework {
+  name = "kdeclarative";
+  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+  propagatedBuildInputs = [
+    epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage
+    kwidgetsaddons kwindowsystem qtdeclarative
+  ];
+  postInstall = ''
+    wrapQtProgram "$out/bin/kpackagelauncherqml"
+  '';
+}