Hi,
consider the following recursive attribute set:
rec
{
"foo.bar" = "test";
}
Is there any way to refer to "foo.bar" within that set? The obvious
attempt
rec
{
"foo.bar" = "test";
foobar1 = foo.bar; # undefined reference
foobar2 = "foo.bar"; # doesn't refer too "foo.bar"
}
won't work.
Best regards,
Peter