From 78b6a1ad141df4b92b9a9aa226ccfc573b7ce6fc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 28 Feb 2017 07:41:58 -0600 Subject: [PATCH] kwayland: mark broken on Qt 5.5 --- .../libraries/kde-frameworks/kwayland.nix | 19 ++++++++++--------- 1 file 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 ]; }