1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-26 20:01:15 +02:00

* In `nix-env', look for derivations inside attribute sets that have

the `recurseForDerivations' attribute set to `true'.
This commit is contained in:
Eelco Dolstra 2006-03-23 16:43:07 +00:00
parent 49ce8b57dd
commit b69e469328
2 changed files with 16 additions and 1 deletions

View file

@ -55,6 +55,7 @@ Expr evalFile(EvalState & state, const Path & path);
/* Specific results. */
string evalString(EvalState & state, Expr e);
Path evalPath(EvalState & state, Expr e);
bool evalBool(EvalState & state, Expr e);
ATermList evalList(EvalState & state, Expr e);
ATerm coerceToString(Expr e);