nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 system ? builtins.currentSystem,
3}:
4
5let
6 inherit (releaseLib) lib;
7 releaseLib = import ../../top-level/release-lib.nix {
8 # We're not using any functions from release-lib.nix that look at
9 # supportedSystems.
10 supportedSystems = [ ];
11 };
12
13 make =
14 crossSystem:
15 import ./make-bootstrap-tools.nix {
16 pkgs = releaseLib.pkgsForCross crossSystem system;
17 };
18in
19lib.mapAttrs (n: make) (
20 with lib.systems.examples;
21 {
22 # NOTE: Only add platforms for which there are files in `./bootstrap-files`
23 # or for which you plan to request the tarball upload soon. See the
24 # maintainers/scripts/bootstrap-files/README.md
25 # on how to request an upload.
26 # Sort following the sorting in `./default.nix` `bootstrapFiles` argument.
27
28 x86_64-unknown-freebsd = x86_64-freebsd;
29 }
30)