lol

qt6Packages.stdenv: condition on `config.allowAliases` (#370783)

authored by

Weijia Wang and committed by
GitHub
57f60158 9dd10e18

+3 -2
+1 -1
pkgs/top-level/all-packages.nix
··· 10482 10482 qt6 = recurseIntoAttrs (callPackage ../development/libraries/qt-6 { }); 10483 10483 10484 10484 qt6Packages = recurseIntoAttrs (import ./qt6-packages.nix { 10485 - inherit lib __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsHostTarget kdePackages; 10485 + inherit lib config __splicedPackages makeScopeWithSplicing' generateSplicesForMkScope pkgsHostTarget kdePackages; 10486 10486 inherit stdenv; 10487 10487 }); 10488 10488
+2 -1
pkgs/top-level/qt6-packages.nix
··· 5 5 # this file. 6 6 7 7 { lib 8 + , config 8 9 , __splicedPackages 9 10 , makeScopeWithSplicing' 10 11 , generateSplicesForMkScope ··· 124 125 125 126 xwaylandvideobridge = kdePackages.callPackage ../tools/wayland/xwaylandvideobridge { }; 126 127 }); 127 - } // { 128 + } // lib.optionalAttrs config.allowAliases { 128 129 stdenv = lib.warn "qt6Packages.stdenv is deprecated. Use stdenv instead." stdenv; # Added for 25.05 129 130 }