Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes regression caused by #252244. `env` was first defined in its own attrset, which was merged with a second attrset: ```nix ... { env = { NATIVE_FULL_AOT = "1"; LIBRARY_PATH = lib.concatStringsSep ":" libGccJitLibraryPaths; }; } // { ... env.NIX_CFLAGS_COMPILE = ... ... } ``` In this situation, the `env` from the first attrset is not preserved, since `//` does a shallow merge. Signed-off-by: Andrew Pan <[email protected]>
- Loading branch information