1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

freshBootstrapTools.bootstrapTools: fix eval on darwin

```
error: undefined variable 'system'
       at /home/artturin/nixgits/my-nixpkgs/.worktree/1/pkgs/stdenv/darwin/make-bootstrap-tools.nix:213:32:

          212|
          213|   bootstrapTools = derivation {
             |                                ^
          214|     inherit system;

```

fixes eval of `freshBootstrapTools.bootstrapTools` in darwin repl
This commit is contained in:
Artturin 2023-09-07 04:21:43 +03:00
parent de42a231a4
commit 93fb394638

View file

@ -211,7 +211,7 @@ in rec {
};
bootstrapTools = derivation {
inherit system;
inherit (localSystem) system;
name = "bootstrap-tools";
builder = "${bootstrapFiles.tools}/bin/bash";