summary refs log tree commit diff
path: root/pkgs
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
parent266adab32d55f1272e95e9aae8c6ee2bab3f0570 (diff)
downloadnixpkgs-64c90e53e742a4edc65afa059639c9853696c2c3.tar
nixpkgs-64c90e53e742a4edc65afa059639c9853696c2c3.tar.gz
nixpkgs-64c90e53e742a4edc65afa059639c9853696c2c3.tar.bz2
nixpkgs-64c90e53e742a4edc65afa059639c9853696c2c3.tar.lz
nixpkgs-64c90e53e742a4edc65afa059639c9853696c2c3.tar.xz
nixpkgs-64c90e53e742a4edc65afa059639c9853696c2c3.tar.zst
nixpkgs-64c90e53e742a4edc65afa059639c9853696c2c3.zip
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')
-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 9563f52ea26..24dc30692fa 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.