summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2020-12-05 13:32:35 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2020-12-12 16:06:36 -0600
commit2f391f917dfe6690f54dc8f5e9e88ca7b4094c77 (patch)
tree49e0ca5b20f5682f6d35c35f787a946289f736a5 /pkgs/applications/kde
parent9ed169aa803c1580bcb0857cad9ee2118d7730c5 (diff)
libkgapi: broken with Qt < 5.14
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/libkgapi.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/kde/libkgapi.nix b/pkgs/applications/kde/libkgapi.nix
index 9d2d41c41d7f..0e1d71d2745f 100644
--- a/pkgs/applications/kde/libkgapi.nix
+++ b/pkgs/applications/kde/libkgapi.nix
@@ -1,7 +1,7 @@
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
- qtwebengine, kio, kcalendarcore, kcontacts,
+ qtbase, qtwebengine, kio, kcalendarcore, kcontacts,
cyrus_sasl
}:
@@ -10,6 +10,7 @@ mkDerivation {
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
+ broken = lib.versionOlder qtbase.version "5.14.0";
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ qtwebengine kio kcalendarcore kcontacts cyrus_sasl ];