We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcf2d84 commit e663518Copy full SHA for e663518
1 file changed
pkgs/top-level/all-packages.nix
@@ -1584,6 +1584,14 @@ with pkgs;
1584
1585
brewtarget = libsForQt514.callPackage ../applications/misc/brewtarget { } ;
1586
1587
+ stdenvBootstrapTools =
1588
+ let args = { crossSystem = stdenv.hostPlatform.system; }; in
1589
+ if stdenv.hostPlatform.isDarwin
1590
+ then callPackage ../stdenv/darwin/make-bootstrap-tools.nix args
1591
+ else if stdenv.hostPlatform.isLinux
1592
+ then callPackage ../stdenv/linux/make-bootstrap-tools.nix args
1593
+ else throw "stdenvBootstrapTools: unknown hostPlatform ${stdenv.hostPlatform.config}";
1594
+
1595
boxes = callPackage ../tools/text/boxes { };
1596
1597
boundary = callPackage ../tools/networking/boundary { };
0 commit comments