forked from mirrors/nixpkgs
darwin: use // for binutils-unwrapped and cctools to preserve the other
attributes
This commit is contained in:
parent
c01f509e44
commit
02e3f51d27
|
@ -262,11 +262,12 @@ rec {
|
|||
ln -s ${bootstrapTools}/bin/rewrite-tbd $out/bin
|
||||
'';
|
||||
|
||||
binutils-unwrapped = { name = "bootstrap-stage0-binutils"; outPath = bootstrapTools; };
|
||||
binutils-unwrapped = bootstrapTools // {
|
||||
name = "bootstrap-stage0-binutils";
|
||||
};
|
||||
|
||||
cctools = {
|
||||
cctools = bootstrapTools // {
|
||||
name = "bootstrap-stage0-cctools";
|
||||
outPath = bootstrapTools;
|
||||
targetPrefix = "";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue