From f43a2aaf79c12b2028d29a77b9519e86f0e94cd8 Mon Sep 17 00:00:00 2001 From: rewine Date: Sat, 7 Feb 2026 12:47:28 +0800 Subject: [PATCH] qt6Packages: add aliases for dropped packages --- pkgs/top-level/qt6-packages.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pkgs/top-level/qt6-packages.nix b/pkgs/top-level/qt6-packages.nix index bd2aff231250..b2cacadea0fa 100644 --- a/pkgs/top-level/qt6-packages.nix +++ b/pkgs/top-level/qt6-packages.nix @@ -147,5 +147,15 @@ makeScopeWithSplicing' { wayqt = callPackage ../development/libraries/wayqt { }; } + // lib.optionalAttrs config.allowAliases { + qwlroots = throw '' + 'qt6Packages.qwlroots' has been removed because it has been merged into treeland upstream. + The upstream no longer provides it as a standalone development library. + ''; # Added 2025-02-07 + waylib = throw '' + 'qt6Packages.waylib' has been removed because it has been merged into treeland upstream. + The upstream no longer provides it as a standalone development library. + ''; # Added 2025-02-07 + } ); }