qt6Packages.stdenv: lift out of scope

This of course caused warnings for every package using
`qt6Package.callPackage`. I trusted eval to flag up warnings but the
new CI apparently currently swallows them.

Fixes: 2b969610d6
This commit is contained in:
Emily
2025-01-04 02:37:47 +00:00
parent 7f5756b006
commit 9f2d119bb1
+2 -1
View File
@@ -27,7 +27,6 @@ makeScopeWithSplicing' {
inherit (self) callPackage;
noExtraAttrs = set: lib.attrsets.removeAttrs set [ "extend" "override" "overrideScope" "overrideDerivation" ];
in (noExtraAttrs qt6) // {
stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv;
# LIBRARIES
accounts-qt = callPackage ../development/libraries/accounts-qt { };
@@ -125,4 +124,6 @@ makeScopeWithSplicing' {
xwaylandvideobridge = kdePackages.callPackage ../tools/wayland/xwaylandvideobridge { };
});
} // {
stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv; # Added for 25.05
}