Skip to content

Commit

Permalink
Merge #168650: stdenvBootstrapTools: add attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed May 1, 2022
2 parents a78f46d + e663518 commit bb7ce96
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit bb7ce96

Please sign in to comment.