aliases.nix: convert Plasma 5 aliases to hard throws

This commit is contained in:
K900
2025-08-21 22:31:18 +03:00
parent 7c491d6739
commit 68a3a079c3
+2 -5
View File
@@ -195,12 +195,9 @@ let
makePlasma5Throw =
name:
throw ''
The top-level ${name} alias has been removed.
The libsForQt5.${name} package and the corresponding top-level ${name} alias have been removed.
Please explicitly use kdePackages.${name} for the latest Qt 6-based version,
or libsForQt5.${name} for the deprecated Qt 5 version.
Note that Qt 5 versions of most KDE software will be removed in NixOS 25.11.
Please explicitly use kdePackages.${name} for the latest Qt 6-based version.
'';
plasma5Throws = lib.mapAttrs (k: _: makePlasma5Throw k) deprecatedPlasma5Packages;