about summary refs log tree commit diff
path: root/pkgs/applications/maui
diff options
context:
space:
mode:
authorK900 <me@0upti.me>2023-03-18 01:58:24 +0300
committerK900 <me@0upti.me>2023-03-18 02:10:20 +0300
commita5a292c7a82c694129c1045a4ee8a5078db37d71 (patch)
tree5993cea8d479a7ae9711164fe57682b99912a695 /pkgs/applications/maui
parent509d8ca5c238a3507ed36109dca07044c6a63b9a (diff)
treewide: clear out remaining qt5 conditionals
Diffstat (limited to 'pkgs/applications/maui')
-rw-r--r--pkgs/applications/maui/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/applications/maui/default.nix b/pkgs/applications/maui/default.nix
index 6f045bda658b9..b91f13d125944 100644
--- a/pkgs/applications/maui/default.nix
+++ b/pkgs/applications/maui/default.nix
@@ -28,9 +28,6 @@ See also `pkgs/applications/kde` as this is what this is based on.
 }:
 
 let
-  minQtVersion = "5.15";
-  broken = lib.versionOlder libsForQt5.qtbase.version minQtVersion;
-
   mirror = "mirror://kde";
   srcs = import ./srcs.nix { inherit fetchurl mirror; };
 
@@ -51,11 +48,10 @@ let
           meta // {
             homepage = meta.homepage or "https://mauikit.org/";
             platforms = meta.platforms or lib.platforms.linux;
-            broken = meta.broken or broken;
           };
       });
 
-  packages = self: with self;
+  packages = self:
     let
       callPackage = self.newScope {
         inherit mkDerivation;