summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kdeclarative.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2016-07-28 18:27:13 -0500
committerThomas Tuegel <ttuegel@gmail.com>2016-07-28 18:27:13 -0500
commit4856a2a1eaf41e55312a17cb7b8cce64e448bb23 (patch)
treea84430bf3a15a6f0be4361f9913541bd889b5ec1 /pkgs/development/libraries/kde-frameworks/kdeclarative.nix
parentadd332c4249564674ee8a744c238e7c13722c240 (diff)
downloadnixpkgs-4856a2a1eaf41e55312a17cb7b8cce64e448bb23.tar
nixpkgs-4856a2a1eaf41e55312a17cb7b8cce64e448bb23.tar.gz
nixpkgs-4856a2a1eaf41e55312a17cb7b8cce64e448bb23.tar.bz2
nixpkgs-4856a2a1eaf41e55312a17cb7b8cce64e448bb23.tar.lz
nixpkgs-4856a2a1eaf41e55312a17cb7b8cce64e448bb23.tar.xz
nixpkgs-4856a2a1eaf41e55312a17cb7b8cce64e448bb23.tar.zst
nixpkgs-4856a2a1eaf41e55312a17cb7b8cce64e448bb23.zip
build KDE Frameworks with each Qt version
Diffstat (limited to 'pkgs/development/libraries/kde-frameworks/kdeclarative.nix')
-rw-r--r--pkgs/development/libraries/kde-frameworks/kdeclarative.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/kde-frameworks/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks/kdeclarative.nix
new file mode 100644
index 00000000000..8db1b73c91a
--- /dev/null
+++ b/pkgs/development/libraries/kde-frameworks/kdeclarative.nix
@@ -0,0 +1,15 @@
+{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig
+, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage
+, kwidgetsaddons, kwindowsystem, pkgconfig
+, qtdeclarative
+}:
+
+kdeFramework {
+  name = "kdeclarative";
+  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+  nativeBuildInputs = [ extra-cmake-modules ];
+  propagatedBuildInputs = [
+    epoxy kconfig kglobalaccel kguiaddons ki18n kiconthemes kio kpackage
+    kwidgetsaddons kwindowsystem qtdeclarative
+  ];
+}