kwayland-server: broken with Qt < 5.15

This commit is contained in:
Thomas Tuegel 2020-12-05 13:24:56 -06:00
parent f288e18725
commit 9178d4ce67
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59

View File

@ -1,8 +1,8 @@
{
mkDerivation, cmake,
mkDerivation, lib, cmake,
extra-cmake-modules, kdoctools,
kwayland, plasma-wayland-protocols,
wayland, wayland-protocols
wayland, wayland-protocols, qtbase
}:
mkDerivation {
@ -15,4 +15,5 @@ mkDerivation {
kwayland plasma-wayland-protocols wayland wayland-protocols
];
patches = [ ./0001-Use-KDE_INSTALL_TARGETS_DEFAULT_ARGS-when-installing.patch ];
meta.broken = lib.versionOlder qtbase.version "5.15.0";
}