Add stdenv to llvm-intel passthru

This commit is contained in:
2026-03-16 17:32:41 +01:00
parent 6be58c257c
commit e8a51dc271
2 changed files with 8 additions and 6 deletions

View File

@@ -3,6 +3,7 @@
lib,
gcc,
libgcc,
overrideCC,
wrapCCWith,
}:
@@ -66,6 +67,7 @@ in
''
+ extraBuildCommands;
}).overrideAttrs
(old: {
installPhase = old.installPhase + extraInstallCommands;
(finalAttrs: prevAttrs: {
installPhase = prevAttrs.installPhase + extraInstallCommands;
passthru.stdenv = overrideCC stdenv finalAttrs.finalPackage;
})