summaryrefslogtreecommitdiffstats
path: root/pkgs/stdenv/darwin
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-05-23 01:24:16 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-05-23 09:51:16 -0400
commit64c90e53e742a4edc65afa059639c9853696c2c3 (patch)
tree2499c6381512df345391907695535e28048fd578 /pkgs/stdenv/darwin
parent266adab32d55f1272e95e9aae8c6ee2bab3f0570 (diff)
darwin stdenv: Persist `darwin.binutils-unwrapped`
binutils-unwrapped was added in ef3db7d14c90e1876d38ebc25428b4f65962ffbc and needs a corresponding `persisted` attr in the Darwin stdenv.
Diffstat (limited to 'pkgs/stdenv/darwin')
-rw-r--r--pkgs/stdenv/darwin/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix
index 9563f52ea263..24dc30692fa5 100644
--- a/pkgs/stdenv/darwin/default.nix
+++ b/pkgs/stdenv/darwin/default.nix
@@ -321,7 +321,7 @@ in rec {
darwin = super.darwin // {
inherit (darwin) dyld ICU Libsystem libiconv;
} // lib.optionalAttrs (super.targetPlatform == localSystem) {
- inherit (darwin) binutils cctools;
+ inherit (darwin) binutils binutils-unwrapped cctools;
};
} // lib.optionalAttrs (super.targetPlatform == localSystem) {
# Need to get rid of these when cross-compiling.