Merge pull request #40991 from obsidiansystems/stdenv-darwin-persist

darwin stdenv: Persist `darwin.binutils-unwrapped`
This commit is contained in:
John Ericson 2018-05-23 09:58:47 -04:00 committed by GitHub
commit e3f35d1491
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -321,7 +321,7 @@ in rec {
darwin = super.darwin // { darwin = super.darwin // {
inherit (darwin) dyld ICU Libsystem libiconv; inherit (darwin) dyld ICU Libsystem libiconv;
} // lib.optionalAttrs (super.targetPlatform == localSystem) { } // lib.optionalAttrs (super.targetPlatform == localSystem) {
inherit (darwin) binutils cctools; inherit (darwin) binutils binutils-unwrapped cctools;
}; };
} // lib.optionalAttrs (super.targetPlatform == localSystem) { } // lib.optionalAttrs (super.targetPlatform == localSystem) {
# Need to get rid of these when cross-compiling. # Need to get rid of these when cross-compiling.