These are serialised as the serialisation of the value of that field. Change-Id: Ida51708b1f43ce09b0ec835f4e265918aa31dd09 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8205 Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
8 lines
151 B
Nix
8 lines
151 B
Nix
# Attribute sets with an `outPath` can contain _any_ serialisable
|
|
# value in that field.
|
|
builtins.toJSON {
|
|
outPath = {
|
|
a = 40;
|
|
b = 2;
|
|
};
|
|
}
|