1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-20 11:11:03 -04:00

Open the store before constructing EvalState.

EvalState requires the `store` global to be initialized before it is constructed
in some cases, e.g. when it needs to download a tarball for something in
NIX_PATH. Hence, this fixes #13.
This commit is contained in:
Scott Olson 2016-02-16 18:40:45 -06:00
parent dc8b51754b
commit cfc874ee52

View file

@ -78,8 +78,6 @@ NixRepl::NixRepl(const Strings & searchPath)
, staticEnv(false, &state.staticBaseEnv) , staticEnv(false, &state.staticBaseEnv)
{ {
curDir = absPath("."); curDir = absPath(".");
store = openStore();
} }
@ -622,6 +620,7 @@ int main(int argc, char * * argv)
return true; return true;
}); });
store = openStore();
NixRepl repl(searchPath); NixRepl repl(searchPath);
repl.mainLoop(files); repl.mainLoop(files);
}); });