Merge pull request #29517 from obsidiansystems/cctools-cross
darwin stdenv: cctools override needs to go away when targetPlatform changes
This commit is contained in:
commit
e1372646aa
1 changed files with 3 additions and 1 deletions
|
@ -294,7 +294,9 @@ in rec {
|
|||
};
|
||||
|
||||
darwin = super.darwin // {
|
||||
inherit (darwin) dyld ICU Libsystem cctools libiconv;
|
||||
inherit (darwin) dyld ICU Libsystem libiconv;
|
||||
} // lib.optionalAttrs (super.targetPlatform == localSystem) {
|
||||
inherit (darwin) cctools;
|
||||
};
|
||||
} // lib.optionalAttrs (super.targetPlatform == localSystem) {
|
||||
# Need to get rid of these when cross-compiling.
|
||||
|
|
Loading…
Reference in a new issue