Merge "meson: move nix3 manpage generation into command-ref/" into main

This commit is contained in:
Qyriad 2024-04-03 21:34:27 +00:00 committed by Gerrit Code Review
commit c263554ec6
2 changed files with 21 additions and 13 deletions

View file

@ -132,19 +132,10 @@ nix3_cli_json = custom_target(
capture : true,
output : 'nix.json',
)
nix3_cli_files = custom_target(
command : nix_eval_for_docs + [
'--write-to', '@OUTPUT@',
'--expr',
'import @INPUT1@ true (builtins.readFile @INPUT0@)',
],
input : [
nix3_cli_json,
'generate-manpage.nix',
'utils.nix',
],
output : 'new-cli',
)
# Creates nix3_cli_files custom target variable,
# which outputs the entire src/command-ref/new-cli directory.
subdir('src/command-ref')
nix3_manpages = [
'nix3-build',
@ -245,6 +236,7 @@ foreach page : nix3_manpages
'@OUTPUT@.tmp',
'@OUTPUT@',
],
# nix3_cli_files set in doc/manual/src/command-ref/meson.build.
input : nix3_cli_files,
output : page + '.1',
install : true,

View file

@ -0,0 +1,16 @@
nix3_cli_files = custom_target(
'command-ref-new-cli',
command : nix_eval_for_docs + [
'--write-to', '@OUTPUT@',
'--expr',
'import @INPUT1@ true (builtins.readFile @INPUT0@)',
],
input : [
nix3_cli_json,
files(
meson.project_source_root() / 'doc/manual/generate-manpage.nix',
meson.project_source_root() / 'doc/manual/utils.nix',
),
],
output : 'new-cli',
)