qt6Packages: remove stdenv fully

This commit is contained in:
Audrey Dutcher 2025-03-18 21:43:14 -07:00
parent 529d4344f5
commit 8bb19fd308
2 changed files with 1 additions and 7 deletions

View File

@ -40,10 +40,7 @@ let
) allUrls;
in
(
# This removes reference to deprecated `qt6Packages.stdenv`
# so when a KDE package asks for a stdenv, it won't trigger
# an eval warning
(lib.removeAttrs qt6Packages [ "stdenv" ])
qt6Packages
// frameworks
// gear
// plasma

View File

@ -134,7 +134,4 @@ makeScopeWithSplicing' {
xwaylandvideobridge = kdePackages.callPackage ../tools/wayland/xwaylandvideobridge { };
});
} // lib.optionalAttrs config.allowAliases {
# when removing, don't forget to remove a workaround in `pkgs/kde/default.nix`
stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv; # Added for 25.05
}