Open jsoo1 opened 1 year ago
Can you make this a complete example that evaluates?
╭─[/tmp/tmp.lit6ZL6FZb]
╰─ % nix-instantiate foo.nix
error: attribute 'system' missing
at /tmp/tmp.lit6ZL6FZb/foo.nix:4:4:
3| let res = nixos { };
4| in res.system.overrideAttrs (o: { passthru = (o.passthru or { }) // res; })
| ^
5|
I have a few build products that we make like this:
Which results in errors like this with
nix-eval-jobs
But
nix-instantiate
handles this fine.Does
nix-eval-jobs
need to skippassthru
attrs?