I’m building a large tree of packages which has a number of unknown build issues in it. I’d like to execute a build that is as eager as possible so that I can discover many of these issues at once— it should chase each branch of the dependency tree to conclusion, whether that’s a success or failure.
Nix build’s default behaviour is instead to stop immediately on the first failure, even aborting in-progress builds that would have succeeded, so that they have to start over from the beginning on the next try.
Is there a flag or mode I can use to get what I’d like here?