acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / stdenv / freebsd / make-bootstrap-tools-cross.nix
blob65d9812460fba5d8f0e4fd74e5dc54a9730accf4
1 {system ? builtins.currentSystem}:
3 let
4   inherit (releaseLib) lib;
5   releaseLib = import ../../top-level/release-lib.nix {
6     # We're not using any functions from release-lib.nix that look at
7     # supportedSystems.
8     supportedSystems = [];
9   };
11   make = crossSystem: import ./make-bootstrap-tools.nix {
12     pkgs = releaseLib.pkgsForCross crossSystem system;
13   };
14 in lib.mapAttrs (n: make) (with lib.systems.examples; {
15   # NOTE: Only add platforms for which there are files in `./bootstrap-files`
16   # or for which you plan to request the tarball upload soon. See the
17   #   maintainers/scripts/bootstrap-files/README.md
18   # on how to request an upload.
19   # Sort following the sorting in `./default.nix` `bootstrapFiles` argument.
21   x86_64-unknown-freebsd = x86_64-freebsd;