2025-02-10 21:55:08 +00:00
|
|
|
{
|
|
|
|
eval,
|
|
|
|
lib,
|
|
|
|
pkgs,
|
|
|
|
}:
|
2023-08-06 21:25:37 +00:00
|
|
|
let
|
|
|
|
conf = eval.config;
|
2023-11-09 19:29:36 +00:00
|
|
|
rootDir = builtins.toPath ./..;
|
2024-06-30 15:58:29 +00:00
|
|
|
stripAnyPrefixes = lib.flip (lib.fold lib.removePrefix) [ "${rootDir}/" ];
|
|
|
|
optToDoc = name: opt: {
|
2023-08-06 21:25:37 +00:00
|
|
|
inherit name;
|
|
|
|
description = opt.description or null;
|
|
|
|
default = opt.default or null;
|
2025-02-10 21:55:08 +00:00
|
|
|
visible = if (opt ? visible && opt.visible == "shallow") then true else opt.visible or true;
|
2023-08-06 21:25:37 +00:00
|
|
|
readOnly = opt.readOnly or false;
|
|
|
|
type = opt.type.description or "unspecified";
|
|
|
|
};
|
2025-02-10 21:55:08 +00:00
|
|
|
spliceServiceDefn =
|
|
|
|
item:
|
|
|
|
if item.type == "parametrisable s6-rc service definition" then
|
|
|
|
let
|
|
|
|
sd = lib.attrByPath item.loc [ "not found" ] conf;
|
|
|
|
in
|
|
|
|
item
|
|
|
|
// {
|
|
|
|
declarations = map stripAnyPrefixes item.declarations;
|
2023-08-06 21:25:37 +00:00
|
|
|
parameters =
|
2025-02-10 21:55:08 +00:00
|
|
|
let
|
|
|
|
x = lib.mapAttrsToList optToDoc sd.parameters;
|
|
|
|
in
|
|
|
|
x;
|
2023-08-06 21:25:37 +00:00
|
|
|
}
|
|
|
|
else
|
2024-06-30 15:58:29 +00:00
|
|
|
item // { declarations = map stripAnyPrefixes item.declarations; };
|
2023-11-09 19:29:36 +00:00
|
|
|
in
|
2024-06-30 15:58:29 +00:00
|
|
|
builtins.map spliceServiceDefn (pkgs.lib.optionAttrSetToDocList eval.options)
|