summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-28 07:41:16 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-28 07:41:16 -0600
commit34df5c5684f87284ccf4ba16ad558d0721da515d (patch)
tree54874d3fd31baa4d40b219c27f6cbf77d1522c21
parent29d0bf7434ba3faa49ef97b6959485a096704a5c (diff)
downloadnixpkgs-34df5c5684f87284ccf4ba16ad558d0721da515d.tar
nixpkgs-34df5c5684f87284ccf4ba16ad558d0721da515d.tar.gz
nixpkgs-34df5c5684f87284ccf4ba16ad558d0721da515d.tar.bz2
nixpkgs-34df5c5684f87284ccf4ba16ad558d0721da515d.tar.lz
nixpkgs-34df5c5684f87284ccf4ba16ad558d0721da515d.tar.xz
nixpkgs-34df5c5684f87284ccf4ba16ad558d0721da515d.tar.zst
nixpkgs-34df5c5684f87284ccf4ba16ad558d0721da515d.zip
bluez-qt: mark broken on Qt 5.5
-rw-r--r--pkgs/development/libraries/kde-frameworks/bluez-qt.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/libraries/kde-frameworks/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks/bluez-qt.nix
index 93c945b58ca..261d9471a77 100644
--- a/pkgs/development/libraries/kde-frameworks/bluez-qt.nix
+++ b/pkgs/development/libraries/kde-frameworks/bluez-qt.nix
@@ -1,11 +1,14 @@
 { kdeFramework, lib
 , extra-cmake-modules
-, qtdeclarative
+, qtbase, qtdeclarative
 }:
 
 kdeFramework {
   name = "bluez-qt";
-  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+  meta = {
+    maintainers = [ lib.maintainers.ttuegel ];
+    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
+  };
   nativeBuildInputs = [ extra-cmake-modules ];
   propagatedBuildInputs = [ qtdeclarative ];
   preConfigure = ''