mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +00:00
* Nix-instantiate now accepts sets of derivations (just like nix-env).
This commit is contained in:
parent
292d6468ec
commit
638ce339a5
@ -30,6 +30,8 @@ static void printNixExpr(EvalState & state, Expr e)
|
||||
ATMatcher m;
|
||||
ATermList es;
|
||||
|
||||
/* !!! duplication w.r.t. parseDerivations in nix-env */
|
||||
|
||||
if (atMatch(m, e) >> "Attrs" >> es) {
|
||||
Expr a = queryAttr(e, "type");
|
||||
if (a && evalString(state, a) == "derivation") {
|
||||
@ -38,6 +40,13 @@ static void printNixExpr(EvalState & state, Expr e)
|
||||
cout << format("%1%\n") % evalPath(state, a);
|
||||
return;
|
||||
}
|
||||
throw Error("bad derivation");
|
||||
} else {
|
||||
ATermMap drvMap;
|
||||
queryAllAttrs(e, drvMap);
|
||||
for (ATermIterator i(drvMap.keys()); i; ++i)
|
||||
printNixExpr(state, evalExpr(state, drvMap.get(*i)));
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user