1a7e88bbd9
names of the attributes in an attribute set.
11 lines
217 B
Nix
11 lines
217 B
Nix
with import ./lib.nix;
|
|
|
|
let
|
|
|
|
attrs = {y = "y"; x = "x"; foo = "foo";} // rec {x = "newx"; bar = x;};
|
|
|
|
names = builtins.attrNames attrs;
|
|
|
|
values = map (name: builtins.getAttr name attrs) names;
|
|
|
|
in concat values
|