mirror of
https://github.com/NixOS/nix
synced 2025-06-28 09:31:16 +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
|
@ -45,6 +45,10 @@ MetaInfo DrvInfo::queryMetaInfo(EvalState & state) const
|
|||
}
|
||||
|
||||
|
||||
/* Cache for already evaluated derivations. Usually putting ATerms in
|
||||
a STL container is unsafe (they're not scanning for GC roots), but
|
||||
here it doesn't matter; everything in this set is reachable from
|
||||
the stack as well. */
|
||||
typedef set<Expr> Exprs;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue