2007-08-18 22:12:00 +00:00
|
|
|
# this test shows how to use listToAttrs and that evaluation is still lazy (throw isn't called)
|
2010-03-31 13:35:29 +00:00
|
|
|
with import ./lib.nix;
|
|
|
|
|
2007-08-18 22:12:00 +00:00
|
|
|
let
|
2010-03-31 13:35:29 +00:00
|
|
|
asi = name: value : { inherit name value; };
|
2007-08-18 22:12:00 +00:00
|
|
|
list = [ ( asi "a" "A" ) ( asi "b" "B" ) ];
|
|
|
|
a = builtins.listToAttrs list;
|
|
|
|
b = builtins.listToAttrs ( list ++ list );
|
|
|
|
r = builtins.listToAttrs [ (asi "result" [ a b ]) ( asi "throw" (throw "this should not be thrown")) ];
|
2010-10-24 19:52:33 +00:00
|
|
|
x = builtins.listToAttrs [ (asi "foo" "bar") (asi "foo" "bla") ];
|
2010-10-23 22:55:30 +00:00
|
|
|
in concat (map (x: x.a) r.result) + x.foo
|