summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-02-28 07:47:53 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2017-02-28 07:53:25 -0600
commita8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4 (patch)
tree23f33ead46a591dc3380b172aa726c98eaa4b5cc
parent9cd0754191fb91024b91e19fabefc02004437fd8 (diff)
downloadnixpkgs-a8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4.tar
nixpkgs-a8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4.tar.gz
nixpkgs-a8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4.tar.bz2
nixpkgs-a8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4.tar.lz
nixpkgs-a8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4.tar.xz
nixpkgs-a8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4.tar.zst
nixpkgs-a8cc6d909b4e571fe8a5ea2e036ee9d86e8165d4.zip
kconfig: mark broken on Qt 5.5
-rw-r--r--pkgs/development/libraries/kde-frameworks/kconfig.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/kde-frameworks/kconfig.nix b/pkgs/development/libraries/kde-frameworks/kconfig.nix
index 981256e75bf..f6d38cd2336 100644
--- a/pkgs/development/libraries/kde-frameworks/kconfig.nix
+++ b/pkgs/development/libraries/kde-frameworks/kconfig.nix
@@ -2,7 +2,10 @@
 
 kdeFramework {
   name = "kconfig";
-  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
+  meta = {
+    maintainers = [ lib.maintainers.ttuegel ];
+    broken = builtins.compareVersions qtbase.version "5.6.0" < 0;
+  };
   nativeBuildInputs = [ extra-cmake-modules qttools ];
   buildInputs = [ qtbase ];
 }