Merge #168650: stdenvBootstrapTools: add attribute
This commit is contained in:
commit
bb7ce96081
1 changed files with 8 additions and 0 deletions
|
@ -1886,6 +1886,14 @@ with pkgs;
|
|||
|
||||
brewtarget = libsForQt514.callPackage ../applications/misc/brewtarget { } ;
|
||||
|
||||
stdenvBootstrapTools =
|
||||
let args = { crossSystem = stdenv.hostPlatform.system; }; in
|
||||
if stdenv.hostPlatform.isDarwin
|
||||
then callPackage ../stdenv/darwin/make-bootstrap-tools.nix args
|
||||
else if stdenv.hostPlatform.isLinux
|
||||
then callPackage ../stdenv/linux/make-bootstrap-tools.nix args
|
||||
else throw "stdenvBootstrapTools: unknown hostPlatform ${stdenv.hostPlatform.config}";
|
||||
|
||||
boxes = callPackage ../tools/text/boxes { };
|
||||
|
||||
boundary = callPackage ../tools/networking/boundary { };
|
||||
|
|
Loading…
Reference in a new issue