-
-
Notifications
You must be signed in to change notification settings - Fork 18.7k
Expand file tree
/
Copy pathformats.nix
More file actions
1081 lines (979 loc) · 29.4 KB
/
formats.nix
File metadata and controls
1081 lines (979 loc) · 29.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{ lib, pkgs }:
let
inherit (lib)
boolToString
concatStringsSep
escape
filterAttrs
flatten
hasPrefix
id
isAttrs
isBool
isDerivation
isFloat
isInt
isList
isString
mapAttrs
mapAttrsToList
mkOption
optionalAttrs
optionalString
pipe
singleton
strings
toPretty
types
versionAtLeast
warn
;
inherit (lib.generators)
mkValueStringDefault
toGitINI
toINI
toINIWithGlobalSection
toKeyValue
toLua
mkLuaInline
;
inherit (lib.types)
serializableValueWith
attrsOf
atom
bool
coercedTo
either
float
int
listOf
luaInline
mkOptionType
nonEmptyListOf
nullOr
oneOf
path
str
submodule
;
# Attributes added accidentally in https://github.com/NixOS/nixpkgs/pull/335232 (2024-08-18)
# Deprecated in https://github.com/NixOS/nixpkgs/pull/415666 (2025-06)
allowAliases = pkgs.config.allowAliases or false;
aliasWarning = name: warn "`formats.${name}` is deprecated; use `lib.types.${name}` instead.";
aliases = mapAttrs aliasWarning {
inherit
attrsOf
bool
coercedTo
either
float
int
listOf
luaInline
mkOptionType
nonEmptyListOf
nullOr
oneOf
path
str
;
};
in
optionalAttrs allowAliases aliases
// rec {
/*
Every following entry represents a format for program configuration files
used for `settings`-style options (see https://github.com/NixOS/rfcs/pull/42).
Each entry should look as follows:
<format> = <parameters>: {
# ^^ Parameters for controlling the format
# The module system type most suitable for representing such a format
# The description needs to be overwritten for recursive types
type = ...;
# Utility functions for convenience, or special interactions with the
# format (optional)
lib = {
exampleFunction = ...
# Types specific to the format (optional)
types = { ... };
...
};
# generate :: Name -> Value -> Path
# A function for generating a file with a value of such a type
generate = ...;
});
Please note that `pkgs` may not always be available for use due to the split
options doc build introduced in fc614c37c653, so lazy evaluation of only the
'type' field is required.
*/
inherit (import ./formats/java-properties/default.nix { inherit lib pkgs; })
javaProperties
;
libconfig = (import ./formats/libconfig/default.nix { inherit lib pkgs; }).format;
hocon = (import ./formats/hocon/default.nix { inherit lib pkgs; }).format;
php = (import ./formats/php/default.nix { inherit lib pkgs; }).format;
json =
{ }:
{
type = types.json;
generate =
name: value:
pkgs.callPackage (
{ runCommand, jq }:
runCommand name
{
nativeBuildInputs = [ jq ];
value = builtins.toJSON value;
passAsFile = [ "value" ];
preferLocalBuild = true;
}
''
jq . "$valuePath" > $out
''
) { };
};
yaml = yaml_1_1;
yaml_1_1 =
{ }:
{
generate =
name: value:
pkgs.callPackage (
{ runCommand, remarshal_0_17 }:
runCommand name
{
nativeBuildInputs = [ remarshal_0_17 ];
value = builtins.toJSON value;
passAsFile = [ "value" ];
preferLocalBuild = true;
}
''
json2yaml "$valuePath" "$out"
''
) { };
type = serializableValueWith { typeName = "YAML 1.1"; };
};
yaml_1_2 =
{ }:
{
generate =
name: value:
pkgs.callPackage (
{ runCommand, remarshal }:
runCommand name
{
nativeBuildInputs = [ remarshal ];
value = builtins.toJSON value;
passAsFile = [ "value" ];
preferLocalBuild = true;
}
''
json2yaml "$valuePath" "$out"
''
) { };
type = serializableValueWith { typeName = "YAML 1.2"; };
};
# the ini formats share a lot of code
inherit
(
let
singleIniAtom =
nullOr (oneOf [
bool
int
float
str
])
// {
description = "INI atom (null, bool, int, float or string)";
};
iniAtom =
{
listsAsDuplicateKeys,
listToValue,
atomsCoercedToLists,
}:
let
singleIniAtomOr =
if atomsCoercedToLists then coercedTo singleIniAtom singleton else either singleIniAtom;
in
if listsAsDuplicateKeys then
singleIniAtomOr (listOf singleIniAtom)
// {
description = singleIniAtom.description + " or a list of them for duplicate keys";
}
else if listToValue != null then
singleIniAtomOr (nonEmptyListOf singleIniAtom)
// {
description = singleIniAtom.description + " or a non-empty list of them";
}
else
singleIniAtom;
iniSection =
atom:
attrsOf atom
// {
description = "section of an INI file (attrs of " + atom.description + ")";
};
maybeToList =
listToValue:
if listToValue != null then
mapAttrs (key: val: if isList val then listToValue val else val)
else
id;
in
{
ini =
{
# Represents lists as duplicate keys
listsAsDuplicateKeys ? false,
# Alternative to listsAsDuplicateKeys, converts list to non-list
# listToValue :: [IniAtom] -> IniAtom
listToValue ? null,
# Merge multiple instances of the same key into a list
atomsCoercedToLists ? null,
...
}@args:
assert listsAsDuplicateKeys -> listToValue == null;
assert atomsCoercedToLists != null -> (listsAsDuplicateKeys || listToValue != null);
let
atomsCoercedToLists' = if atomsCoercedToLists == null then false else atomsCoercedToLists;
atom = iniAtom {
inherit listsAsDuplicateKeys listToValue;
atomsCoercedToLists = atomsCoercedToLists';
};
in
{
type = attrsOf (iniSection atom);
lib.types.atom = atom;
generate =
name: value:
pipe value [
(mapAttrs (_: maybeToList listToValue))
(toINI (
removeAttrs args [
"listToValue"
"atomsCoercedToLists"
]
))
(pkgs.writeText name)
];
};
iniWithGlobalSection =
{
# Represents lists as duplicate keys
listsAsDuplicateKeys ? false,
# Alternative to listsAsDuplicateKeys, converts list to non-list
# listToValue :: [IniAtom] -> IniAtom
listToValue ? null,
# Merge multiple instances of the same key into a list
atomsCoercedToLists ? null,
...
}@args:
assert listsAsDuplicateKeys -> listToValue == null;
assert atomsCoercedToLists != null -> (listsAsDuplicateKeys || listToValue != null);
let
atomsCoercedToLists' = if atomsCoercedToLists == null then false else atomsCoercedToLists;
atom = iniAtom {
inherit listsAsDuplicateKeys listToValue;
atomsCoercedToLists = atomsCoercedToLists';
};
in
{
type = submodule {
options = {
sections = mkOption rec {
type = attrsOf (iniSection atom);
default = { };
description = type.description;
};
globalSection = mkOption rec {
type = iniSection atom;
default = { };
description = "global " + type.description;
};
};
};
lib.types.atom = atom;
generate =
name:
{
sections ? { },
globalSection ? { },
...
}:
pkgs.writeText name (
toINIWithGlobalSection
(removeAttrs args [
"listToValue"
"atomsCoercedToLists"
])
{
globalSection = maybeToList listToValue globalSection;
sections = mapAttrs (_: maybeToList listToValue) sections;
}
);
};
gitIni =
{
listsAsDuplicateKeys ? false,
...
}@args:
let
atom = iniAtom {
inherit listsAsDuplicateKeys;
listToValue = null;
atomsCoercedToLists = false;
};
in
{
type = attrsOf (attrsOf (either atom (attrsOf atom)));
lib.types.atom = atom;
generate = name: value: pkgs.writeText name (toGitINI value);
};
}
)
ini
iniWithGlobalSection
gitIni
;
# As defined by systemd.syntax(7)
#
# null does not set any value, which allows for RFC42 modules to specify
# optional config options.
systemd =
let
mkValueString = mkValueStringDefault { };
mkKeyValue = k: v: if v == null then "# ${k} is unset" else "${k} = ${mkValueString v}";
rawFormat = ini {
listsAsDuplicateKeys = true;
inherit mkKeyValue;
};
in
rawFormat
// {
generate =
name: value:
lib.warn
"Direct use of `pkgs.formats.systemd` has been deprecated, please use `pkgs.formats.systemd { }` instead."
rawFormat.generate
name
value;
__functor = self: { }: rawFormat;
};
keyValue =
{
# Represents lists as duplicate keys
listsAsDuplicateKeys ? false,
# Alternative to listsAsDuplicateKeys, converts list to non-list
# listToValue :: [Atom] -> Atom
listToValue ? null,
...
}@args:
assert listsAsDuplicateKeys -> listToValue == null;
{
type =
let
singleAtom =
nullOr (oneOf [
bool
int
float
str
])
// {
description = "atom (null, bool, int, float or string)";
};
atom =
if listsAsDuplicateKeys then
coercedTo singleAtom singleton (listOf singleAtom)
// {
description = singleAtom.description + " or a list of them for duplicate keys";
}
else if listToValue != null then
coercedTo singleAtom singleton (nonEmptyListOf singleAtom)
// {
description = singleAtom.description + " or a non-empty list of them";
}
else
singleAtom;
in
attrsOf atom;
generate =
name: value:
let
transformedValue =
if listToValue != null then
mapAttrs (key: val: if isList val then listToValue val else val) value
else
value;
in
pkgs.writeText name (toKeyValue (removeAttrs args [ "listToValue" ]) transformedValue);
};
toml =
{ }:
json { }
// {
type = types.toml;
generate =
name: value:
pkgs.callPackage (
{ runCommand, go-toml }:
runCommand name
{
nativeBuildInputs = [ go-toml ];
value = builtins.toJSON value;
passAsFile = [ "value" ];
preferLocalBuild = true;
}
# -use-json-number: preserve JSON ints as TOML ints
# (Go's json.Decoder defaults to float64 for all numbers)
''
jsontoml -use-json-number < "$valuePath" > "$out"
''
) { };
};
/*
dzikoysk's CDN format, see https://github.com/dzikoysk/cdn
The result is almost identical to YAML when there are no nested properties,
but differs enough in the other case to warrant a separate format.
(see https://github.com/dzikoysk/cdn#supported-formats)
Currently used by Panda, Reposilite, and FunnyGuilds (as per the repo's readme).
*/
cdn =
{ }:
json { }
// {
type = serializableValueWith { typeName = "CDN"; };
generate =
name: value:
pkgs.callPackage (
{ runCommand, json2cdn }:
runCommand name
{
nativeBuildInputs = [ json2cdn ];
value = builtins.toJSON value;
passAsFile = [ "value" ];
preferLocalBuild = true;
}
''
json2cdn "$valuePath" > $out
''
) { };
};
/*
For configurations of Elixir project, like config.exs or runtime.exs
Most Elixir project are configured using the [Config] Elixir DSL
Since Elixir has more types than Nix, we need a way to map Nix types to
more than 1 Elixir type. To that end, this format provides its own library,
and its own set of types.
To be more detailed, a Nix attribute set could correspond in Elixir to a
[Keyword list] (the more common type), or it could correspond to a [Map].
A Nix string could correspond in Elixir to a [String] (also called
"binary"), an [Atom], or a list of chars (usually discouraged).
A Nix array could correspond in Elixir to a [List] or a [Tuple].
Some more types exists, like records, regexes, but since they are less used,
we can leave the `mkRaw` function as an escape hatch.
For more information on how to use this format in modules, please refer to
the Elixir section of the Nixos documentation.
TODO: special Elixir values doesn't show up nicely in the documentation
[Config]: <https://hexdocs.pm/elixir/Config.html>
[Keyword list]: <https://hexdocs.pm/elixir/Keyword.html>
[Map]: <https://hexdocs.pm/elixir/Map.html>
[String]: <https://hexdocs.pm/elixir/String.html>
[Atom]: <https://hexdocs.pm/elixir/Atom.html>
[List]: <https://hexdocs.pm/elixir/List.html>
[Tuple]: <https://hexdocs.pm/elixir/Tuple.html>
*/
elixirConf =
{
elixir ? pkgs.elixir,
}:
let
toElixir =
value:
if value == null then
"nil"
else if value == true then
"true"
else if value == false then
"false"
else if isInt value || isFloat value then
toString value
else if isString value then
string value
else if isAttrs value then
attrs value
else if isList value then
list value
else
abort "formats.elixirConf: should never happen (value = ${value})";
escapeElixir = escape [
"\\"
"#"
"\""
];
string = value: "\"${escapeElixir value}\"";
attrs =
set:
if set ? _elixirType then
specialType set
else
let
toKeyword = name: value: "${name}: ${toElixir value}";
keywordList = concatStringsSep ", " (mapAttrsToList toKeyword set);
in
"[" + keywordList + "]";
listContent = values: concatStringsSep ", " (map toElixir values);
list = values: "[" + (listContent values) + "]";
specialType =
{ value, _elixirType }:
if _elixirType == "raw" then
value
else if _elixirType == "atom" then
value
else if _elixirType == "map" then
elixirMap value
else if _elixirType == "tuple" then
tuple value
else
abort "formats.elixirConf: should never happen (_elixirType = ${_elixirType})";
elixirMap =
set:
let
toEntry = name: value: "${toElixir name} => ${toElixir value}";
entries = concatStringsSep ", " (mapAttrsToList toEntry set);
in
"%{${entries}}";
tuple = values: "{${listContent values}}";
toConf =
values:
let
keyConfig =
rootKey: key: value:
"config ${rootKey}, ${key}, ${toElixir value}";
keyConfigs = rootKey: values: mapAttrsToList (keyConfig rootKey) values;
rootConfigs = flatten (mapAttrsToList keyConfigs values);
in
''
import Config
${concatStringsSep "\n" rootConfigs}
'';
in
{
type =
let
valueType =
nullOr (oneOf [
bool
int
float
str
(attrsOf valueType)
(listOf valueType)
])
// {
description = "Elixir value";
};
in
attrsOf (attrsOf valueType);
lib =
let
mkRaw = value: {
inherit value;
_elixirType = "raw";
};
in
{
inherit mkRaw;
# Fetch an environment variable at runtime, with optional fallback
mkGetEnv =
{
envVariable,
fallback ? null,
}:
mkRaw "System.get_env(${toElixir envVariable}, ${toElixir fallback})";
/*
Make an Elixir atom.
Note: lowercase atoms still need to be prefixed by ':'
*/
mkAtom = value: {
inherit value;
_elixirType = "atom";
};
# Make an Elixir tuple out of a list.
mkTuple = value: {
inherit value;
_elixirType = "tuple";
};
# Make an Elixir map out of an attribute set.
mkMap = value: {
inherit value;
_elixirType = "map";
};
/*
Contains Elixir types. Every type it exports can also be replaced
by raw Elixir code (i.e. every type is `either type rawElixir`).
It also reexports standard types, wrapping them so that they can
also be raw Elixir.
*/
types =
let
isElixirType = type: x: (x._elixirType or "") == type;
rawElixir = mkOptionType {
name = "rawElixir";
description = "raw elixir";
check = isElixirType "raw";
};
elixirOr = other: either other rawElixir;
in
{
inherit rawElixir elixirOr;
atom = elixirOr (mkOptionType {
name = "elixirAtom";
description = "elixir atom";
check = isElixirType "atom";
});
tuple = elixirOr (mkOptionType {
name = "elixirTuple";
description = "elixir tuple";
check = isElixirType "tuple";
});
map = elixirOr (mkOptionType {
name = "elixirMap";
description = "elixir map";
check = isElixirType "map";
});
# Wrap standard types, since anything in the Elixir configuration
# can be raw Elixir
}
// mapAttrs (_name: type: elixirOr type) types;
};
generate =
name: value:
pkgs.runCommand name
{
value = toConf value;
passAsFile = [ "value" ];
nativeBuildInputs = [ elixir ];
preferLocalBuild = true;
}
''
cp "$valuePath" "$out"
mix format "$out"
'';
};
lua =
{
asBindings ? false,
multiline ? true,
columnWidth ? 100,
indentWidth ? 2,
indentUsingTabs ? false,
}:
{
type =
let
valueType =
nullOr (oneOf [
bool
float
int
path
str
luaInline
(attrsOf valueType)
(listOf valueType)
])
// {
description = "lua value";
descriptionClass = "noun";
};
in
if asBindings then attrsOf valueType else valueType;
generate =
name: value:
pkgs.callPackage (
{ runCommand, stylua }:
runCommand name
{
nativeBuildInputs = [ stylua ];
inherit columnWidth;
inherit indentWidth;
indentType = if indentUsingTabs then "Tabs" else "Spaces";
value = toLua { inherit asBindings multiline; } value;
passAsFile = [ "value" ];
preferLocalBuild = true;
}
''
${optionalString (!asBindings) ''
echo -n 'return ' >> $out
''}
cat $valuePath >> $out
stylua \
--no-editorconfig \
--line-endings Unix \
--column-width $columnWidth \
--indent-width $indentWidth \
--indent-type $indentType \
$out
''
) { };
# Alias for mkLuaInline
lib.mkRaw = lib.mkLuaInline;
};
nixConf =
{
package,
version,
extraOptions ? "",
checkAllErrors ? true,
checkConfig ? true,
}:
let
isNixAtLeast = versionAtLeast version;
in
assert isNixAtLeast "2.2";
{
type =
let
atomType = nullOr (oneOf [
bool
int
float
str
path
package
]);
in
attrsOf atomType;
generate =
name: value:
let
# note that list type has been omitted here as the separator varies, see `nix.settings.*`
mkValueString =
v:
if v == null then
""
else if isInt v then
toString v
else if isBool v then
boolToString v
else if isFloat v then
strings.floatToString v
else if isDerivation v then
toString v
else if builtins.isPath v then
toString v
else if isString v then
v
else if strings.isConvertibleWithToString v then
toString v
else
abort "The nix conf value: ${toPretty { } v} can not be encoded";
mkKeyValue = k: v: "${escape [ "=" ] k} = ${mkValueString v}";
mkKeyValuePairs = attrs: concatStringsSep "\n" (mapAttrsToList mkKeyValue attrs);
isExtra = key: hasPrefix "extra-" key;
in
pkgs.writeTextFile {
inherit name;
# workaround for https://github.com/NixOS/nix/issues/9487
# extra-* settings must come after their non-extra counterpart
text = ''
# WARNING: this file is generated from the nix.* options in
# your NixOS configuration, typically
# /etc/nixos/configuration.nix. Do not edit it!
${mkKeyValuePairs (filterAttrs (key: _: !(isExtra key)) value)}
${mkKeyValuePairs (filterAttrs (key: _: isExtra key) value)}
${extraOptions}
'';
checkPhase = lib.optionalString checkConfig (
if pkgs.stdenv.hostPlatform != pkgs.stdenv.buildPlatform then
''
echo "Ignoring validation for cross-compilation"
''
else
let
showCommand = if isNixAtLeast "2.20pre" then "config show" else "show-config";
in
''
echo "Validating generated nix.conf"
ln -s $out ./nix.conf
set -e
set +o pipefail
NIX_CONF_DIR=$PWD \
${package}/bin/nix ${showCommand} ${optionalString (isNixAtLeast "2.3pre") "--no-net"} \
${optionalString (isNixAtLeast "2.4pre") "--option experimental-features nix-command"} \
|& sed -e 's/^warning:/error:/' \
| (! grep '${if checkAllErrors then "^error:" else "^error: unknown setting"}')
set -o pipefail
''
);
};
};
# Outputs a succession of Python variable assignments
# Useful for many Django-based services
pythonVars =
{ }:
{
type = attrsOf (serializableValueWith {
typeName = "Python";
});
lib = {
mkRaw = value: {
inherit value;
_type = "raw";
};
};
generate =
name: value:
pkgs.callPackage (
{
runCommand,
python3,
black,
}:
runCommand name
{
nativeBuildInputs = [
python3
black
];
imports = builtins.toJSON (value._imports or [ ]);
value = builtins.toJSON (removeAttrs value [ "_imports" ]);
pythonGen = ''
import json
import os
def recursive_repr(value: any) -> str:
if type(value) is list:
return '\n'.join([
"[",
*[recursive_repr(x) + "," for x in value],
"]",
])
elif type(value) is dict and value.get("_type") == "raw":
return value.get("value")
elif type(value) is dict:
return '\n'.join([
"{",
*[f"'{k.replace('\''', '\\\''')}': {recursive_repr(v)}," for k, v in value.items()],
"}",
])
else:
return repr(value)
with open(os.environ["importsPath"], "r") as f:
imports = json.load(f)
if imports is not None:
for i in imports:
print(f"import {i}")
print()
with open(os.environ["valuePath"], "r") as f:
for key, value in json.load(f).items():
print(f"{key} = {recursive_repr(value)}")
'';
passAsFile = [
"imports"
"value"
"pythonGen"
];
preferLocalBuild = true;
}
''
cat "$valuePath"
python3 "$pythonGenPath" > $out
black $out
''
) { };
};
xml =
{
format ? "badgerfish",
withHeader ? true,
}:
if format == "badgerfish" then
{
type = serializableValueWith { typeName = "XML"; };
generate =
name: value:
pkgs.callPackage (
{
runCommand,
libxml2Python,
python3Packages,
}: