mirror of
https://github.com/NixOS/nix
synced 2025-06-26 20:01:15 +02:00
* Allow string concatenations involving derivations, e.g.,
configureFlags = "--with-freetype2-library=" + freetype + "/lib";
This commit is contained in:
parent
cce31b739c
commit
6cecad2be0
8 changed files with 130 additions and 18 deletions
|
@ -59,6 +59,11 @@ bool evalBool(EvalState & state, Expr e);
|
|||
ATermList evalList(EvalState & state, Expr e);
|
||||
ATerm coerceToString(Expr e);
|
||||
|
||||
/* Contexts. */
|
||||
string coerceToStringWithContext(EvalState & state,
|
||||
ATermList & context, Expr e, bool & isPath);
|
||||
Expr wrapInContext(ATermList context, Expr e);
|
||||
|
||||
/* Print statistics. */
|
||||
void printEvalStats(EvalState & state);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue