about summary refs log tree commit diff
path: root/pkgs/applications/maui
diff options
context:
space:
mode:
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;