comments descriping the unreadable yaml generation

This commit is contained in:
Alexandra Østermark
2025-11-13 11:30:23 +01:00
parent 9a4dc02b20
commit 74307df8e3
+5 -1
View File
@@ -8,10 +8,14 @@ with lib; let
cfg = config.nixarr.recyclarr; cfg = config.nixarr.recyclarr;
globals = config.util-nixarr.globals; globals = config.util-nixarr.globals;
nixarr = config.nixarr; nixarr = config.nixarr;
# This is a carbon copy of the yaml implementation in nixpkgs https://github.com/NixOS/nixpkgs/blob/fde6c4aec177afa2d0248b1c5983e2a72a231442/pkgs/pkgs-lib/formats.nix#L210-L231
# except we've replaced json2yaml for yq-go to allow it to parse custom yaml tags
# ideally this would some day be upstreamed, see https://github.com/NixOS/nix/issues/4910 and https://github.com/rasmus-kirk/nixarr/issues/91
yamlGenerator = {preserved-tags ? []}: let yamlGenerator = {preserved-tags ? []}: let
selectors = selectors =
pkgs.lib.strings.concatStringsSep "/" pkgs.lib.strings.concatStringsSep "|"
(builtins.map ( (builtins.map (
# this is yq for "for all the scalers, if they match this regex, do a regex substitution and set the tag"
x: '' x: ''
with((.. | select(kind == "scalar") | select(test("^!${x} .*"))); . = sub("!${x} ", "") | . tag="!${x}") with((.. | select(kind == "scalar") | select(test("^!${x} .*"))); . = sub("!${x} ", "") | . tag="!${x}")
'' ''