diff --git a/pkgs/applications/networking/maestral-qt/default.nix b/pkgs/by-name/ma/maestral-gui/package.nix similarity index 90% rename from pkgs/applications/networking/maestral-qt/default.nix rename to pkgs/by-name/ma/maestral-gui/package.nix index b351009d549c..ba047ae40420 100644 --- a/pkgs/applications/networking/maestral-qt/default.nix +++ b/pkgs/by-name/ma/maestral-gui/package.nix @@ -2,11 +2,8 @@ lib, fetchFromGitHub, python3, - qtbase, - qtsvg, - qtwayland, + qt6, nixosTests, - wrapQtAppsHook, }: python3.pkgs.buildPythonApplication rec { @@ -32,12 +29,12 @@ python3.pkgs.buildPythonApplication rec { ]; buildInputs = [ - qtwayland - qtbase - qtsvg # Needed for the systray icon + qt6.qtwayland + qt6.qtbase + qt6.qtsvg # Needed for the systray icon ]; - nativeBuildInputs = [ wrapQtAppsHook ]; + nativeBuildInputs = [ qt6.wrapQtAppsHook ]; dontWrapQtApps = true; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e401cc20301e..905722874ae5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10942,8 +10942,6 @@ with pkgs; maestral = with python3Packages; toPythonApplication maestral; - maestral-gui = qt6Packages.callPackage ../applications/networking/maestral-qt { }; - myfitnesspal = with python3Packages; toPythonApplication myfitnesspal; lightdm_qt = lightdm.override { withQt5 = true; };