1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-11 04:56:01 +01:00

Refactor, extract some shared code into UnresolvedApp::build

This commit is contained in:
Jeremy Fleischman 2025-04-29 18:36:56 -07:00
parent e14346c7da
commit 7df7bde306
No known key found for this signature in database
3 changed files with 12 additions and 10 deletions

View file

@ -21,6 +21,7 @@ struct App
struct UnresolvedApp
{
App unresolved;
std::vector<BuiltPathWithResult> build(ref<Store> evalStore, ref<Store> store);
App resolve(ref<Store> evalStore, ref<Store> store);
};