Merge pull request #147544 from cab404/fix-stdenv-override
stdenv: move overriden stdenv in closure
This commit is contained in:
commit
4a8f9970e2
2 changed files with 8 additions and 7 deletions
2
.github/CODEOWNERS
vendored
2
.github/CODEOWNERS
vendored
|
@ -39,7 +39,7 @@
|
||||||
/pkgs/top-level/stage.nix @nbp @Ericson2314 @matthewbauer
|
/pkgs/top-level/stage.nix @nbp @Ericson2314 @matthewbauer
|
||||||
/pkgs/top-level/splice.nix @Ericson2314 @matthewbauer
|
/pkgs/top-level/splice.nix @Ericson2314 @matthewbauer
|
||||||
/pkgs/top-level/release-cross.nix @Ericson2314 @matthewbauer
|
/pkgs/top-level/release-cross.nix @Ericson2314 @matthewbauer
|
||||||
/pkgs/stdenv/generic @Ericson2314 @matthewbauer
|
/pkgs/stdenv/generic @Ericson2314 @matthewbauer @cab404
|
||||||
/pkgs/stdenv/cross @Ericson2314 @matthewbauer
|
/pkgs/stdenv/cross @Ericson2314 @matthewbauer
|
||||||
/pkgs/build-support/cc-wrapper @Ericson2314 @orivej
|
/pkgs/build-support/cc-wrapper @Ericson2314 @orivej
|
||||||
/pkgs/build-support/bintools-wrapper @Ericson2314 @orivej
|
/pkgs/build-support/bintools-wrapper @Ericson2314 @orivej
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
let lib = import ../../../lib; in lib.makeOverridable (
|
let lib = import ../../../lib; stdenv-overridable = lib.makeOverridable (
|
||||||
|
|
||||||
{ name ? "stdenv", preHook ? "", initialPath
|
argsStdenv@{ name ? "stdenv", preHook ? "", initialPath
|
||||||
|
|
||||||
, # If we don't have a C compiler, we might either have `cc = null` or `cc =
|
, # If we don't have a C compiler, we might either have `cc = null` or `cc =
|
||||||
# throw ...`, but if we do have a C compiler we should definiely have `cc !=
|
# throw ...`, but if we do have a C compiler we should definiely have `cc !=
|
||||||
|
@ -81,8 +81,10 @@ let
|
||||||
|
|
||||||
defaultBuildInputs = extraBuildInputs;
|
defaultBuildInputs = extraBuildInputs;
|
||||||
|
|
||||||
|
stdenv = (stdenv-overridable argsStdenv);
|
||||||
|
|
||||||
# The stdenv that we are producing.
|
# The stdenv that we are producing.
|
||||||
stdenv =
|
in
|
||||||
derivation (
|
derivation (
|
||||||
lib.optionalAttrs (allowedRequisites != null) {
|
lib.optionalAttrs (allowedRequisites != null) {
|
||||||
allowedRequisites = allowedRequisites
|
allowedRequisites = allowedRequisites
|
||||||
|
@ -172,6 +174,5 @@ let
|
||||||
# "lift" packages like curl from the final stdenv for Linux to
|
# "lift" packages like curl from the final stdenv for Linux to
|
||||||
# all-packages.nix for that platform (meaning that it has a line
|
# all-packages.nix for that platform (meaning that it has a line
|
||||||
# like curl = if stdenv ? curl then stdenv.curl else ...).
|
# like curl = if stdenv ? curl then stdenv.curl else ...).
|
||||||
// extraAttrs;
|
// extraAttrs
|
||||||
|
); in stdenv-overridable
|
||||||
in stdenv)
|
|
||||||
|
|
Loading…
Reference in a new issue