mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
lib/generators.toPretty: Only quote attribute names if necessary
This commit is contained in:
parent
f3bf0f173e
commit
0f6231702f
@ -227,7 +227,7 @@ rec {
|
||||
else "{ "
|
||||
+ libStr.concatStringsSep " " (libAttr.mapAttrsToList
|
||||
(name: value:
|
||||
"${toPretty args name} = ${toPretty args value};") v)
|
||||
"${libStr.escapeNixIdentifier name} = ${toPretty args value};") v)
|
||||
+ " }"
|
||||
else if isFunction v then
|
||||
let fna = lib.functionArgs v;
|
||||
|
@ -469,7 +469,7 @@ runTests {
|
||||
function = "<λ>";
|
||||
functionArgs = "<λ:{(arg),foo}>";
|
||||
list = "[ 3 4 ${function} [ false ] ]";
|
||||
attrs = "{ \"foo\" = null; \"foo bar\" = \"baz\"; }";
|
||||
attrs = "{ foo = null; \"foo bar\" = \"baz\"; }";
|
||||
drv = "<δ:test>";
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user