about summary refs log tree commit diff
path: root/tests/lang/eval-okay-scope-7.nix
AgeCommit message (Collapse)AuthorFilesLines
2009-05-15 * Change the scoping of "inherit (e) ..." in recs so that theEelco Dolstra1-0/+6
attributes of the rec are in scope of `e'. This is useful in expressions such as rec { lib = import ./lib; inherit (lib) concatStrings; } It does change the semantics of expressions such as let x = {y = 1;}; in rec { x = {y = 2;}; inherit (x) y; }.y This now returns 2 instead of 1. However, no code in Nixpkgs or NixOS seems to rely on the old behaviour.