summary refs log tree commit diff
path: root/pkgs/applications/kde/dolphin.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2021-01-31 10:17:53 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2021-02-04 14:52:01 -0600
commite2e0b52daebce2b643d60fb6b0846195c75b7eb9 (patch)
tree18c1c86997fbce4560273d3c475d4094713d4225 /pkgs/applications/kde/dolphin.nix
parent828b91c55524817e1b7c12b0430145f49e1155c1 (diff)
downloadnixpkgs-e2e0b52daebce2b643d60fb6b0846195c75b7eb9.tar
nixpkgs-e2e0b52daebce2b643d60fb6b0846195c75b7eb9.tar.gz
nixpkgs-e2e0b52daebce2b643d60fb6b0846195c75b7eb9.tar.bz2
nixpkgs-e2e0b52daebce2b643d60fb6b0846195c75b7eb9.tar.lz
nixpkgs-e2e0b52daebce2b643d60fb6b0846195c75b7eb9.tar.xz
nixpkgs-e2e0b52daebce2b643d60fb6b0846195c75b7eb9.tar.zst
nixpkgs-e2e0b52daebce2b643d60fb6b0846195c75b7eb9.zip
dolphin: broken with Qt < 5.14
Diffstat (limited to 'pkgs/applications/kde/dolphin.nix')
-rw-r--r--pkgs/applications/kde/dolphin.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/kde/dolphin.nix b/pkgs/applications/kde/dolphin.nix
index 3774c7e00b6..a558ad26677 100644
--- a/pkgs/applications/kde/dolphin.nix
+++ b/pkgs/applications/kde/dolphin.nix
@@ -5,7 +5,7 @@
   kcompletion, kconfig, kcoreaddons, kdelibs4support, kdbusaddons,
   kfilemetadata, ki18n, kiconthemes, kinit, kio, knewstuff, knotifications,
   kparts, ktexteditor, kwindowsystem, phonon, solid,
-  wayland, qtwayland
+  wayland, qtbase, qtwayland
 }:
 
 mkDerivation {
@@ -13,6 +13,7 @@ mkDerivation {
   meta = {
     license = with lib.licenses; [ gpl2 fdl12 ];
     maintainers = [ lib.maintainers.ttuegel ];
+    broken = lib.versionOlder qtbase.version "5.14";
   };
   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
   propagatedUserEnvPkgs = [ baloo ];