Fix building against current Nix master
This commit is contained in:
parent
02b66e97ba
commit
89f9c0d41b
|
@ -2,6 +2,8 @@
|
|||
|
||||
with import nixpkgs { inherit system; };
|
||||
|
||||
let nix = nixUnstable; in
|
||||
|
||||
runCommand "nix-repl"
|
||||
{ buildInputs = [ readline nix boehmgc ]; }
|
||||
''
|
||||
|
|
26
nix-repl.cc
26
nix-repl.cc
|
@ -39,7 +39,7 @@ struct NixRepl
|
|||
StringSet::iterator curCompletion;
|
||||
|
||||
NixRepl();
|
||||
void mainLoop(const Strings & args);
|
||||
void mainLoop(const Strings & files);
|
||||
void completePrefix(string prefix);
|
||||
bool getLine(string & line);
|
||||
bool processLine(string line);
|
||||
|
@ -82,11 +82,11 @@ NixRepl::NixRepl()
|
|||
}
|
||||
|
||||
|
||||
void NixRepl::mainLoop(const Strings & args)
|
||||
void NixRepl::mainLoop(const Strings & files)
|
||||
{
|
||||
std::cout << "Welcome to Nix version " << NIX_VERSION << ". Type :? for help." << std::endl << std::endl;
|
||||
|
||||
foreach (Strings::const_iterator, i, args)
|
||||
foreach (Strings::const_iterator, i, files)
|
||||
loadedFiles.push_back(*i);
|
||||
|
||||
reloadFiles();
|
||||
|
@ -590,8 +590,24 @@ std::ostream & NixRepl::printValue(std::ostream & str, Value & v, unsigned int m
|
|||
}
|
||||
|
||||
|
||||
void run(Strings args)
|
||||
int main(int argc, char * * argv)
|
||||
{
|
||||
return handleExceptions(argv[0], [&]() {
|
||||
initNix();
|
||||
|
||||
Strings files;
|
||||
|
||||
parseCmdLine(argc, argv, [&](Strings::iterator & arg, const Strings::iterator & end) {
|
||||
if (*arg == "--version")
|
||||
printVersion("nix-repl");
|
||||
else if (*arg != "" && arg->at(0) == '-')
|
||||
return false;
|
||||
else
|
||||
files.push_back(*arg);
|
||||
return true;
|
||||
});
|
||||
|
||||
NixRepl repl;
|
||||
repl.mainLoop(args);
|
||||
repl.mainLoop(files);
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue