summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2020-12-05 13:26:24 -0600
committerThomas Tuegel <ttuegel@mailbox.org>2020-12-12 16:06:14 -0600
commit8ef31809a9501922bfc1b31ab20ff318e8e09c96 (patch)
tree259a0f67f1de5317a075d813f4a4ebb425ccc117 /pkgs
parentb3c5dfd934066a6046ae5f744bd9496a2e92cfad (diff)
downloadnixpkgs-8ef31809a9501922bfc1b31ab20ff318e8e09c96.tar
nixpkgs-8ef31809a9501922bfc1b31ab20ff318e8e09c96.tar.gz
nixpkgs-8ef31809a9501922bfc1b31ab20ff318e8e09c96.tar.bz2
nixpkgs-8ef31809a9501922bfc1b31ab20ff318e8e09c96.tar.lz
nixpkgs-8ef31809a9501922bfc1b31ab20ff318e8e09c96.tar.xz
nixpkgs-8ef31809a9501922bfc1b31ab20ff318e8e09c96.tar.zst
nixpkgs-8ef31809a9501922bfc1b31ab20ff318e8e09c96.zip
libkscreen: broken with Qt < 5.15
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/desktops/plasma-5/libkscreen/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/desktops/plasma-5/libkscreen/default.nix b/pkgs/desktops/plasma-5/libkscreen/default.nix
index db952944eca..08a9e6f4f24 100644
--- a/pkgs/desktops/plasma-5/libkscreen/default.nix
+++ b/pkgs/desktops/plasma-5/libkscreen/default.nix
@@ -7,7 +7,7 @@
 mkDerivation {
   name = "libkscreen";
   meta = {
-    broken = builtins.compareVersions qtbase.version "5.12.0" < 0;
+    broken = lib.versionOlder qtbase.version "5.15.0";
   };
   nativeBuildInputs = [ extra-cmake-modules ];
   buildInputs = [ kwayland libXrandr qtx11extras ];