summary refs log tree commit diff
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2021-02-01 10:41:41 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2021-02-05 05:27:01 -0600
commitcf1dc0129b3a7c5a54cfbeaabbd7653fd168da9f (patch)
tree0ec59b14dff6f702c237c1f7d1bcf78a75557832 /pkgs/applications/kde
parent6a3b9098d105ba67146f7e9296ac814377388d08 (diff)
kdenetwork-filesharing: broken with Qt < 5.13
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/kdenetwork-filesharing.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/kde/kdenetwork-filesharing.nix b/pkgs/applications/kde/kdenetwork-filesharing.nix
index 153ead6ac4b0d..a7da03ffdd145 100644
--- a/pkgs/applications/kde/kdenetwork-filesharing.nix
+++ b/pkgs/applications/kde/kdenetwork-filesharing.nix
@@ -1,7 +1,7 @@
 {
   mkDerivation, lib,
   extra-cmake-modules, kdoctools,
-  kcoreaddons, kdeclarative, ki18n, kio, kwidgetsaddons, samba
+  kcoreaddons, kdeclarative, ki18n, kio, kwidgetsaddons, samba, qtbase,
 }:
 
 mkDerivation {
@@ -9,6 +9,7 @@ mkDerivation {
   meta = {
     license = [ lib.licenses.gpl2 lib.licenses.lgpl21 ];
     maintainers = [ lib.maintainers.ttuegel ];
+    broken = lib.versionOlder qtbase.version "5.13";
   };
   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
   buildInputs = [ kcoreaddons kdeclarative ki18n kio kwidgetsaddons samba ];