summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-04-21 10:32:21 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-04-25 19:04:24 -0500
commiteb604134f7fdd95c78d7979e826cd165b1f627f2 (patch)
tree19f40b0f07182c1e6e86f07441c9e05270796907 /pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix
parent26f90102b897bab14d05bbd8c2385f619d04d8fa (diff)
downloadnixpkgs-eb604134f7fdd95c78d7979e826cd165b1f627f2.tar
nixpkgs-eb604134f7fdd95c78d7979e826cd165b1f627f2.tar.gz
nixpkgs-eb604134f7fdd95c78d7979e826cd165b1f627f2.tar.bz2
nixpkgs-eb604134f7fdd95c78d7979e826cd165b1f627f2.tar.lz
nixpkgs-eb604134f7fdd95c78d7979e826cd165b1f627f2.tar.xz
nixpkgs-eb604134f7fdd95c78d7979e826cd165b1f627f2.tar.zst
nixpkgs-eb604134f7fdd95c78d7979e826cd165b1f627f2.zip
kde5_latest.frameworks: 5.19 -> 5.21
Diffstat (limited to 'pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix')
-rw-r--r--pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix
new file mode 100644
index 00000000000..74d107466cf
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix
@@ -0,0 +1,22 @@
+{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig
+, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage
+, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig
+, qtdeclarative
+}:
+
+kdeFramework {
+  name = "kdeclarative";
+  nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ];
+  buildInputs = [
+    epoxy kguiaddons kiconthemes kwidgetsaddons
+  ];
+  propagatedBuildInputs = [
+    kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative
+  ];
+  postInstall = ''
+    wrapQtProgram "$out/bin/kpackagelauncherqml"
+  '';
+  meta = {
+    maintainers = [ lib.maintainers.ttuegel ];
+  };
+}