2023-05-03 07:16:29 +00:00
|
|
|
let
|
|
|
|
inherit (builtins)
|
2024-04-04 23:07:44 +00:00
|
|
|
attrNames
|
|
|
|
attrValues
|
|
|
|
fromJSON
|
|
|
|
listToAttrs
|
|
|
|
mapAttrs
|
|
|
|
concatStringsSep
|
|
|
|
concatMap
|
|
|
|
length
|
|
|
|
lessThan
|
|
|
|
replaceStrings
|
|
|
|
sort
|
|
|
|
;
|
|
|
|
inherit (import ./utils.nix)
|
|
|
|
concatStrings
|
|
|
|
optionalString
|
|
|
|
filterAttrs
|
|
|
|
trim
|
|
|
|
squash
|
|
|
|
unique
|
|
|
|
showSettings
|
|
|
|
;
|
2023-05-03 07:16:29 +00:00
|
|
|
in
|
2020-12-02 22:05:28 +00:00
|
|
|
|
2023-11-10 18:22:42 +00:00
|
|
|
inlineHTML: commandDump:
|
2020-09-16 12:55:24 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
2023-05-03 07:16:29 +00:00
|
|
|
commandInfo = fromJSON commandDump;
|
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
showCommand =
|
|
|
|
{
|
|
|
|
command,
|
|
|
|
details,
|
|
|
|
filename,
|
|
|
|
toplevel,
|
|
|
|
}:
|
2022-08-26 15:40:34 +00:00
|
|
|
let
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2022-08-27 00:44:54 +00:00
|
|
|
result = ''
|
|
|
|
> **Warning** \
|
2023-04-06 15:09:01 +00:00
|
|
|
> This program is
|
|
|
|
> [**experimental**](@docroot@/contributing/experimental-features.md#xp-feature-nix-command)
|
|
|
|
> and its interface is subject to change.
|
2022-08-27 00:44:54 +00:00
|
|
|
|
|
|
|
# Name
|
|
|
|
|
2022-08-27 01:25:12 +00:00
|
|
|
`${command}` - ${details.description}
|
2022-08-27 00:44:54 +00:00
|
|
|
|
|
|
|
# Synopsis
|
|
|
|
|
2022-08-27 01:25:12 +00:00
|
|
|
${showSynopsis command details.args}
|
2022-08-27 00:44:54 +00:00
|
|
|
|
|
|
|
${maybeSubcommands}
|
|
|
|
|
2023-11-10 18:22:42 +00:00
|
|
|
${maybeStoreDocs}
|
2022-08-27 00:44:54 +00:00
|
|
|
|
|
|
|
${maybeOptions}
|
|
|
|
'';
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
showSynopsis =
|
|
|
|
command: args:
|
2022-08-26 15:40:34 +00:00
|
|
|
let
|
2024-04-04 23:07:44 +00:00
|
|
|
showArgument = arg: "*${arg.label}*" + optionalString (!arg ? arity) "...";
|
2022-08-26 15:40:34 +00:00
|
|
|
arguments = concatStringsSep " " (map showArgument args);
|
2024-04-04 23:07:44 +00:00
|
|
|
in
|
|
|
|
''
|
|
|
|
`${command}` [*option*...] ${arguments}
|
2022-08-26 15:40:34 +00:00
|
|
|
'';
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
maybeSubcommands = optionalString (details ? commands && details.commands != { }) ''
|
|
|
|
where *subcommand* is one of the following:
|
2022-08-26 15:40:34 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
${subcommands}
|
|
|
|
'';
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
subcommands = if length categories > 1 then listCategories else listSubcommands details.commands;
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
categories = sort (x: y: x.id < y.id) (
|
|
|
|
unique (map (cmd: cmd.category) (attrValues details.commands))
|
|
|
|
);
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
listCategories = concatStrings (map showCategory categories);
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
showCategory = cat: ''
|
|
|
|
**${toString cat.description}:**
|
|
|
|
|
2022-08-27 01:25:12 +00:00
|
|
|
${listSubcommands (filterAttrs (n: v: v.category == cat) details.commands)}
|
2022-08-26 15:40:34 +00:00
|
|
|
'';
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
listSubcommands = cmds: concatStrings (attrValues (mapAttrs showSubcommand cmds));
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2022-08-26 15:40:34 +00:00
|
|
|
showSubcommand = name: subcmd: ''
|
|
|
|
* [`${command} ${name}`](./${appendName filename name}.md) - ${subcmd.description}
|
|
|
|
'';
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2023-09-22 12:13:51 +00:00
|
|
|
# TODO: move this confusing special case out of here when implementing #8496
|
2024-04-04 23:07:44 +00:00
|
|
|
maybeStoreDocs = optionalString (details ? doc) (
|
|
|
|
replaceStrings [ "@stores@" ] [ storeDocs ] details.doc
|
|
|
|
);
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
maybeOptions = optionalString (details.flags != { }) ''
|
2022-08-26 15:40:34 +00:00
|
|
|
# Options
|
|
|
|
|
2022-10-07 16:07:22 +00:00
|
|
|
${showOptions details.flags toplevel.flags}
|
2023-09-22 12:13:51 +00:00
|
|
|
|
|
|
|
> **Note**
|
|
|
|
>
|
|
|
|
> See [`man nix.conf`](@docroot@/command-ref/conf-file.md#command-line-flags) for overriding configuration settings with command line flags.
|
2022-08-26 15:40:34 +00:00
|
|
|
'';
|
2023-03-21 11:11:32 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
showOptions =
|
|
|
|
options: commonOptions:
|
2022-08-26 15:40:34 +00:00
|
|
|
let
|
2022-10-07 16:07:22 +00:00
|
|
|
allOptions = options // commonOptions;
|
2022-08-26 21:09:19 +00:00
|
|
|
showCategory = cat: ''
|
2023-04-16 14:44:03 +00:00
|
|
|
${optionalString (cat != "") "**${cat}:**"}
|
2022-08-26 21:09:19 +00:00
|
|
|
|
2022-10-07 16:07:22 +00:00
|
|
|
${listOptions (filterAttrs (n: v: v.category == cat) allOptions)}
|
2024-04-04 23:07:44 +00:00
|
|
|
'';
|
2022-08-26 21:09:19 +00:00
|
|
|
listOptions = opts: concatStringsSep "\n" (attrValues (mapAttrs showOption opts));
|
2024-04-04 23:07:44 +00:00
|
|
|
showOption =
|
|
|
|
name: option:
|
2022-08-26 21:09:19 +00:00
|
|
|
let
|
2023-11-10 18:22:42 +00:00
|
|
|
result = trim ''
|
|
|
|
- ${item}
|
|
|
|
${option.description}
|
|
|
|
'';
|
2024-04-04 23:07:44 +00:00
|
|
|
item =
|
|
|
|
if inlineHTML then
|
|
|
|
''<span id="opt-${name}">[`--${name}`](#opt-${name})</span> ${shortName} ${labels}''
|
|
|
|
else
|
|
|
|
"`--${name}` ${shortName} ${labels}";
|
|
|
|
shortName = optionalString (option ? shortName) ("/ `-${option.shortName}`");
|
|
|
|
labels = optionalString (option ? labels) (concatStringsSep " " (map (s: "*${s}*") option.labels));
|
|
|
|
in
|
|
|
|
result;
|
2023-05-03 07:16:29 +00:00
|
|
|
categories = sort lessThan (unique (map (cmd: cmd.category) (attrValues allOptions)));
|
2024-04-04 23:07:44 +00:00
|
|
|
in
|
|
|
|
concatStrings (map showCategory categories);
|
|
|
|
in
|
|
|
|
squash result;
|
2022-08-26 15:40:34 +00:00
|
|
|
|
|
|
|
appendName = filename: name: (if filename == "nix" then "nix3" else filename) + "-" + name;
|
2020-09-16 12:55:24 +00:00
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
processCommand =
|
|
|
|
{
|
|
|
|
command,
|
|
|
|
details,
|
|
|
|
filename,
|
|
|
|
toplevel,
|
|
|
|
}:
|
2022-08-27 01:25:12 +00:00
|
|
|
let
|
|
|
|
cmd = {
|
|
|
|
inherit command;
|
|
|
|
name = filename + ".md";
|
2024-04-04 23:07:44 +00:00
|
|
|
value = showCommand {
|
|
|
|
inherit
|
|
|
|
command
|
|
|
|
details
|
|
|
|
filename
|
|
|
|
toplevel
|
|
|
|
;
|
|
|
|
};
|
2022-08-27 01:25:12 +00:00
|
|
|
};
|
2024-04-04 23:07:44 +00:00
|
|
|
subcommand =
|
|
|
|
subCmd:
|
|
|
|
processCommand {
|
|
|
|
command = command + " " + subCmd;
|
|
|
|
details = details.commands.${subCmd};
|
|
|
|
filename = appendName filename subCmd;
|
|
|
|
inherit toplevel;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
[ cmd ] ++ concatMap subcommand (attrNames details.commands or { });
|
2022-08-27 01:25:12 +00:00
|
|
|
|
|
|
|
manpages = processCommand {
|
|
|
|
command = "nix";
|
2023-05-03 07:16:29 +00:00
|
|
|
details = commandInfo.args;
|
2022-08-27 01:25:12 +00:00
|
|
|
filename = "nix";
|
2023-05-03 07:16:29 +00:00
|
|
|
toplevel = commandInfo.args;
|
2022-08-27 01:25:12 +00:00
|
|
|
};
|
|
|
|
|
2024-04-04 23:07:44 +00:00
|
|
|
tableOfContents =
|
|
|
|
let
|
|
|
|
showEntry = page: " - [${page.command}](command-ref/new-cli/${page.name})";
|
|
|
|
in
|
|
|
|
concatStringsSep "\n" (map showEntry manpages) + "\n";
|
2022-08-27 01:25:12 +00:00
|
|
|
|
2023-03-21 11:58:14 +00:00
|
|
|
storeDocs =
|
|
|
|
let
|
2024-04-04 23:07:44 +00:00
|
|
|
showStore =
|
|
|
|
name:
|
|
|
|
{
|
|
|
|
settings,
|
|
|
|
doc,
|
|
|
|
experimentalFeature,
|
|
|
|
}:
|
2023-04-17 15:58:47 +00:00
|
|
|
let
|
|
|
|
experimentalFeatureNote = optionalString (experimentalFeature != null) ''
|
|
|
|
> **Warning**
|
|
|
|
> This store is part of an
|
|
|
|
> [experimental feature](@docroot@/contributing/experimental-features.md).
|
|
|
|
|
|
|
|
To use this store, you need to make sure the corresponding experimental feature,
|
|
|
|
[`${experimentalFeature}`](@docroot@/contributing/experimental-features.md#xp-feature-${experimentalFeature}),
|
|
|
|
is enabled.
|
2023-09-22 12:13:51 +00:00
|
|
|
For example, include the following in [`nix.conf`](@docroot@/command-ref/conf-file.md):
|
2023-04-17 15:58:47 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
extra-experimental-features = ${experimentalFeature}
|
|
|
|
```
|
|
|
|
'';
|
2024-04-04 23:07:44 +00:00
|
|
|
in
|
|
|
|
''
|
2023-03-21 11:58:14 +00:00
|
|
|
## ${name}
|
|
|
|
|
2023-03-21 13:03:05 +00:00
|
|
|
${doc}
|
|
|
|
|
2023-04-17 15:58:47 +00:00
|
|
|
${experimentalFeatureNote}
|
|
|
|
|
2023-03-21 13:03:05 +00:00
|
|
|
**Settings**:
|
|
|
|
|
2023-11-10 18:22:42 +00:00
|
|
|
${showSettings { inherit inlineHTML; } settings}
|
2023-03-21 11:58:14 +00:00
|
|
|
'';
|
2024-04-04 23:07:44 +00:00
|
|
|
in
|
|
|
|
concatStrings (attrValues (mapAttrs showStore commandInfo.stores));
|
|
|
|
in
|
|
|
|
(listToAttrs manpages) // { "SUMMARY.md" = tableOfContents; }
|