2022-08-26 12:03:40 +00:00
|
|
|
{ command }:
|
2020-12-02 22:05:28 +00:00
|
|
|
|
2020-09-16 12:55:24 +00:00
|
|
|
with builtins;
|
|
|
|
with import ./utils.nix;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
showCommand = { command, def, filename }:
|
|
|
|
let
|
|
|
|
showSynopsis = command: args:
|
|
|
|
let
|
|
|
|
showArgument = arg: "*${arg.label}*" + (if arg ? arity then "" else "...");
|
|
|
|
arguments = concatStringsSep " " (map showArgument args);
|
|
|
|
in ''
|
|
|
|
`${command}` [*option*...] ${arguments}
|
|
|
|
'';
|
|
|
|
maybeSubcommands = if def ? commands && def.commands != {}
|
|
|
|
then ''
|
|
|
|
where *subcommand* is one of the following:
|
|
|
|
|
|
|
|
${subcommands}
|
|
|
|
''
|
|
|
|
else "";
|
|
|
|
subcommands = if length categories > 1
|
|
|
|
then listCategories
|
|
|
|
else listSubcommands def.commands;
|
|
|
|
categories = sort (x: y: x.id < y.id) (unique (map (cmd: cmd.category) (attrValues def.commands)));
|
|
|
|
listCategories = concatStrings (map showCategory categories);
|
|
|
|
showCategory = cat: ''
|
|
|
|
**${toString cat.description}:**
|
|
|
|
|
|
|
|
${listSubcommands (filterAttrs (n: v: v.category == cat) def.commands)}
|
|
|
|
'';
|
|
|
|
listSubcommands = cmds: concatStrings (attrValues (mapAttrs showSubcommand cmds));
|
|
|
|
showSubcommand = name: subcmd: ''
|
|
|
|
* [`${command} ${name}`](./${appendName filename name}.md) - ${subcmd.description}
|
|
|
|
'';
|
|
|
|
maybeDocumentation = if def ? doc then def.doc else "";
|
|
|
|
maybeOptions = if def.flags == {} then "" else ''
|
|
|
|
# Options
|
|
|
|
|
|
|
|
${showOptions def.flags}
|
|
|
|
'';
|
|
|
|
showOptions = flags:
|
|
|
|
let
|
|
|
|
categories = sort builtins.lessThan (unique (map (cmd: cmd.category) (attrValues flags)));
|
|
|
|
in
|
|
|
|
concatStrings (map
|
|
|
|
(cat:
|
|
|
|
(if cat != ""
|
|
|
|
then "**${cat}:**\n\n"
|
|
|
|
else "")
|
|
|
|
+ concatStrings
|
|
|
|
(map (longName:
|
|
|
|
let
|
|
|
|
flag = flags.${longName};
|
|
|
|
in
|
|
|
|
" - `--${longName}`"
|
|
|
|
+ (if flag ? shortName then " / `-${flag.shortName}`" else "")
|
|
|
|
+ (if flag ? labels then " " + (concatStringsSep " " (map (s: "*${s}*") flag.labels)) else "")
|
|
|
|
+ " \n"
|
|
|
|
+ " " + flag.description + "\n\n"
|
|
|
|
) (attrNames (filterAttrs (n: v: v.category == cat) flags))))
|
|
|
|
categories);
|
|
|
|
squash = string: # squash more than two repeated newlines
|
|
|
|
let
|
|
|
|
replaced = replaceStrings [ "\n\n\n" ] [ "\n\n" ] string;
|
|
|
|
in
|
|
|
|
if replaced == string then string else squash replaced;
|
|
|
|
in squash ''
|
|
|
|
> **Warning** \
|
2022-08-26 15:08:20 +00:00
|
|
|
> This program is **experimental** and its interface is subject to change.
|
|
|
|
|
|
|
|
# Name
|
|
|
|
|
|
|
|
`${command}` - ${def.description}
|
|
|
|
|
|
|
|
# Synopsis
|
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
${showSynopsis command def.args}
|
2022-08-26 15:08:20 +00:00
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
${maybeSubcommands}
|
2020-09-16 12:55:24 +00:00
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
${maybeDocumentation}
|
2020-12-02 22:05:28 +00:00
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
${maybeOptions}
|
|
|
|
'';
|
|
|
|
|
|
|
|
appendName = filename: name: (if filename == "nix" then "nix3" else filename) + "-" + name;
|
2020-09-16 12:55:24 +00:00
|
|
|
|
2020-12-02 22:05:28 +00:00
|
|
|
processCommand = { command, def, filename }:
|
|
|
|
[ { name = filename + ".md"; value = showCommand { inherit command def filename; }; inherit command; } ]
|
|
|
|
++ concatMap
|
|
|
|
(name: processCommand {
|
|
|
|
filename = appendName filename name;
|
|
|
|
command = command + " " + name;
|
|
|
|
def = def.commands.${name};
|
|
|
|
})
|
|
|
|
(attrNames def.commands or {});
|
2020-09-16 12:55:24 +00:00
|
|
|
|
2020-12-02 22:05:28 +00:00
|
|
|
in
|
2020-09-16 12:55:24 +00:00
|
|
|
|
2020-12-02 22:05:28 +00:00
|
|
|
let
|
2021-09-13 12:41:28 +00:00
|
|
|
manpages = processCommand { filename = "nix"; command = "nix"; def = builtins.fromJSON command; };
|
2020-12-02 22:05:28 +00:00
|
|
|
summary = concatStrings (map (manpage: " - [${manpage.command}](command-ref/new-cli/${manpage.name})\n") manpages);
|
|
|
|
in
|
|
|
|
(listToAttrs manpages) // { "SUMMARY.md" = summary; }
|