summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kwayland.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-28 07:41:58 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-28 07:53:00 -0600
commit78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc (patch)
tree3a00de7f8c681025441ec6b40034f6cd4961dc78 /pkgs/development/libraries/kde-frameworks/kwayland.nix
parent34df5c5684f87284ccf4ba16ad558d0721da515d (diff)
downloadnixpkgs-78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc.tar
nixpkgs-78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc.tar.gz
nixpkgs-78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc.tar.bz2
nixpkgs-78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc.tar.lz
nixpkgs-78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc.tar.xz
nixpkgs-78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc.tar.zst
nixpkgs-78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc.zip
kwayland: mark broken on Qt 5.5
Diffstat (limited to 'pkgs/development/libraries/kde-frameworks/kwayland.nix')
-rw-r--r--pkgs/development/libraries/kde-frameworks/kwayland.nix19
1 files changed, 10 insertions, 9 deletions
diff --git a/pkgs/development/libraries/kde-frameworks/kwayland.nix b/pkgs/development/libraries/kde-frameworks/kwayland.nix
index b5255022a86..d34687def3e 100644
--- a/pkgs/development/libraries/kde-frameworks/kwayland.nix
+++ b/pkgs/development/libraries/kde-frameworks/kwayland.nix
@@ -1,15 +1,16 @@
-{ kdeFramework
-, extra-cmake-modules
-, qtbase, wayland
+{
+  kdeFramework, lib,
+  extra-cmake-modules,
+  qtbase, wayland
 }:
 
 kdeFramework {
   name = "kwayland";
-  nativeBuildInputs = [
-    extra-cmake-modules
-  ];
+  meta = {
+    maintainers = [ lib.maintainers.ttuegel ];
+    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
+  };
+  nativeBuildInputs = [ extra-cmake-modules ];
   buildInputs = [ qtbase ];
-  propagatedBuildInputs = [
-    wayland
-  ];
+  propagatedBuildInputs = [ wayland ];
 }