Merge #168650: stdenvBootstrapTools: add attribute

This commit is contained in:
Vladimír Čunát 2022-05-01 10:53:53 +02:00
commit bb7ce96081
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -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 { };