about summary refs log tree commit diff
path: root/tests/lang/eval-okay-delayed-with.exp
AgeCommit message (Collapse)AuthorFilesLines
2013-07-31 Test the delayed with a bit moreEelco Dolstra1-1/+1
2013-07-31 Delay evaulation of `with` attrs until a variable lookup needs themShea Levy1-0/+1
Evaluation of attribute sets is strict in the attribute names, which means immediate evaluation of `with` attribute sets rules out some potentially interesting use cases (e.g. where the attribute names of one set depend in some way on another but we want to bring those names into scope for some values in the second set). The major example of this is overridable self-referential package sets (e.g. all-packages.nix). With immediate `with` evaluation, the only options for such sets are to either make them non-recursive and explicitly use the name of the overridden set in non-overridden one every time you want to reference another package, or make the set recursive and use the `__overrides` hack. As shown in the test case that comes with this commit, though, delayed `with` evaluation allows a nicer third alternative. Signed-off-by: Shea Levy <shea@shealevy.com>