summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2020-12-05 13:23:05 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2020-12-12 16:06:13 -0600
commitfc03e9f15811a73c754ba71660aa483d6c5c5dcd (patch)
treed9d996f06e80a0ae65a80d9b048e2861b90889c5
parentf2ce8a596f3f935f5c30b2a8131c9ad2692d1427 (diff)
polkit-kde-agent: broken with Qt < 5.15
-rw-r--r--pkgs/desktops/plasma-5/polkit-kde-agent.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/desktops/plasma-5/polkit-kde-agent.nix b/pkgs/desktops/plasma-5/polkit-kde-agent.nix
index c25b3d2744b7..27f03e2d931e 100644
--- a/pkgs/desktops/plasma-5/polkit-kde-agent.nix
+++ b/pkgs/desktops/plasma-5/polkit-kde-agent.nix
@@ -1,7 +1,7 @@
{
- mkDerivation, extra-cmake-modules,
+ mkDerivation, lib, extra-cmake-modules,
kcoreaddons, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, knotifications,
- kwidgetsaddons, kwindowsystem, polkit-qt
+ kwidgetsaddons, kwindowsystem, polkit-qt, qtbase
}:
mkDerivation {
@@ -12,4 +12,5 @@ mkDerivation {
knotifications kwindowsystem polkit-qt
];
outputs = [ "out" "dev" ];
+ meta.broken = lib.versionOlder qtbase.version "5.15.0";
}