nix-prefetch-url: progressbar

This commit is contained in:
Will Dietz 2018-10-20 01:11:22 -05:00
parent f6a3dfe4e0
commit 9d24b5d56e

View file

@ -7,6 +7,8 @@
#include "common-eval-args.hh"
#include "attr-path.hh"
#include "legacy.hh"
#include "finally.hh"
#include "progress-bar.hh"
#include <iostream>
@ -96,6 +98,11 @@ static int _main(int argc, char * * argv)
if (args.size() > 2)
throw UsageError("too many arguments");
Finally f([]() { stopProgressBar(); });
if (isatty(STDERR_FILENO))
startProgressBar();
auto store = openStore();
auto state = std::make_unique<EvalState>(myArgs.searchPath, store);