summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.21/kactivities.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/kactivities.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/kactivities.nix')
-rw-r--r--pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix
new file mode 100644
index 00000000000..7c01073e078
--- /dev/null
+++ b/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix
@@ -0,0 +1,19 @@
+{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig
+, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n
+, kio, kservice, kwindowsystem, kxmlgui, qtdeclarative
+}:
+
+kdeFramework {
+  name = "kactivities";
+  nativeBuildInputs = [ extra-cmake-modules ];
+  buildInputs = [
+    boost kcmutils kconfig kcoreaddons kdbusaddons kservice
+    kxmlgui
+  ];
+  propagatedBuildInputs = [
+    kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative
+  ];
+  meta = {
+    maintainers = [ lib.maintainers.ttuegel ];
+  };
+}