Skip to content

Commit

Permalink
freshBootstrapTools.bootstrapTools: fix eval on darwin
Browse files Browse the repository at this point in the history
```
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
  • Loading branch information
Artturin committed Sep 7, 2023
1 parent de42a23 commit 93fb394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/stdenv/darwin/make-bootstrap-tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ in rec {
};

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

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

0 comments on commit 93fb394

Please sign in to comment.