Commit 9f2d119b authored by Emily's avatar Emily
Browse files

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: 2b969610
parent 7f5756b0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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
}