about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/plasma-pa.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2020-12-05 12:37:16 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2020-12-12 16:05:46 -0600
commitb2a1d4bed5cc21e8326a4f2a31eb258bcdf30730 (patch)
tree68ab59c1ac55f3f07a55386b5300bdcc569b4f48 /pkgs/desktops/plasma-5/plasma-pa.nix
parent821cf25911fc891dfbe22645d8d0b98d08b8cc8f (diff)
plasma-pa: broken with Qt < 5.15
Diffstat (limited to 'pkgs/desktops/plasma-5/plasma-pa.nix')
-rw-r--r--pkgs/desktops/plasma-5/plasma-pa.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/desktops/plasma-5/plasma-pa.nix b/pkgs/desktops/plasma-5/plasma-pa.nix
index e29df104f3c72..00f5fefdc4348 100644
--- a/pkgs/desktops/plasma-5/plasma-pa.nix
+++ b/pkgs/desktops/plasma-5/plasma-pa.nix
@@ -1,8 +1,8 @@
 {
-  mkDerivation,
+  mkDerivation, lib,
   extra-cmake-modules, kdoctools,
   kconfigwidgets, kcoreaddons, kdeclarative, kglobalaccel, ki18n, kwindowsystem, plasma-framework,
-  qtdeclarative,
+  qtbase, qtdeclarative,
   gconf, glib, libcanberra-gtk3, libpulseaudio, sound-theme-freedesktop
 }:
 
@@ -15,6 +15,7 @@ mkDerivation {
     kconfigwidgets kcoreaddons kdeclarative kglobalaccel ki18n plasma-framework
     kwindowsystem
 
-    qtdeclarative
+    qtbase qtdeclarative
   ];
+  meta.broken = lib.versionOlder qtbase.version "5.15.0";
 }