Commit 93fb3946 authored by Artturin's avatar Artturin
Browse files

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
parent de42a231
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ in rec {
  };

  bootstrapTools = derivation {
    inherit system;
    inherit (localSystem) system;

    name = "bootstrap-tools";
    builder = "${bootstrapFiles.tools}/bin/bash";