forked from lix-project/lix
nix eval: Take only one argument
Thus --json no longer produces a list.
This commit is contained in:
parent
cfeff3b273
commit
16e0287556
|
@ -8,7 +8,7 @@
|
||||||
|
|
||||||
using namespace nix;
|
using namespace nix;
|
||||||
|
|
||||||
struct CmdEval : MixJSON, InstallablesCommand
|
struct CmdEval : MixJSON, InstallableCommand
|
||||||
{
|
{
|
||||||
bool raw = false;
|
bool raw = false;
|
||||||
|
|
||||||
|
@ -56,20 +56,16 @@ struct CmdEval : MixJSON, InstallablesCommand
|
||||||
|
|
||||||
auto state = getEvalState();
|
auto state = getEvalState();
|
||||||
|
|
||||||
auto jsonOut = json ? std::make_unique<JSONList>(std::cout) : nullptr;
|
auto v = installable->toValue(*state);
|
||||||
|
PathSet context;
|
||||||
for (auto & i : installables) {
|
if (raw) {
|
||||||
auto v = i->toValue(*state);
|
std::cout << state->coerceToString(noPos, *v, context);
|
||||||
PathSet context;
|
} else if (json) {
|
||||||
if (raw) {
|
JSONPlaceholder jsonOut(std::cout);
|
||||||
std::cout << state->coerceToString(noPos, *v, context);
|
printValueAsJSON(*state, true, *v, jsonOut, context);
|
||||||
} else if (json) {
|
} else {
|
||||||
auto jsonElem = jsonOut->placeholder();
|
state->forceValueDeep(*v);
|
||||||
printValueAsJSON(*state, true, *v, jsonElem, context);
|
std::cout << *v << "\n";
|
||||||
} else {
|
|
||||||
state->forceValueDeep(*v);
|
|
||||||
std::cout << *v << "\n";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue