725f5cd358
manpages can be rendered using the markdown output of mdbook, the rest of the manual can generated out of the main doc/manual source tree. we still use lowdown to actually render manpages instead of eg mdbook-man because lowdown does generate reasonably good manpages (though that is also somewhat debatable, but they're a lot better than mdbook-man). doing this not only lets us drastically simplify the lowdown pipeline, but also remove all custom {{#include}} handling since now mdbook does all of it, even for the manpage builds. even the lowdown wrapper isn't entirely necessary because lowdown can take all wrapper arguments with command line flags rather than bits of input file content. This also implements running mdbook in Meson, in order to generate the manpages. The mdbook outputs are also installed in the usual location. Co-authored-by: Qyriad <qyriad@qyriad.me> Change-Id: I60193f9fd0f15d48872f071af35855cda2a0f40b
158 lines
2.7 KiB
Text
158 lines
2.7 KiB
Text
Makefile.config
|
|
perl/Makefile.config
|
|
|
|
# /
|
|
/aclocal.m4
|
|
/autom4te.cache
|
|
/precompiled-headers.h.gch
|
|
/config.*
|
|
/configure
|
|
/stamp-h1
|
|
/svn-revision
|
|
/libtool
|
|
/config
|
|
|
|
# /doc/manual/
|
|
/doc/manual/*.1
|
|
/doc/manual/*.5
|
|
/doc/manual/*.8
|
|
/doc/manual/generated/*
|
|
/doc/manual/nix.json
|
|
/doc/manual/conf-file.json
|
|
/doc/manual/language.json
|
|
/doc/manual/xp-features.json
|
|
/doc/manual/src/command-ref/experimental-features-shortlist.md
|
|
/doc/manual/src/contributing/experimental-feature-descriptions.md
|
|
/doc/manual/src/release-notes/rl-next-generated.md
|
|
|
|
# /scripts/
|
|
/scripts/nix-profile.sh
|
|
/scripts/nix-profile-daemon.sh
|
|
/scripts/nix-profile.fish
|
|
/scripts/nix-profile-daemon.fish
|
|
|
|
# /src/libexpr/
|
|
/src/libexpr/lexer-tab.cc
|
|
/src/libexpr/lexer-tab.hh
|
|
/src/libexpr/parser-tab.cc
|
|
/src/libexpr/parser-tab.hh
|
|
/src/libexpr/parser-tab.output
|
|
/src/libexpr/nix.tbl
|
|
/src/libexpr/tests
|
|
/tests/unit/libexpr/libnixexpr-tests
|
|
|
|
# /src/libstore/
|
|
*.gen.*
|
|
/src/libstore/tests
|
|
/tests/unit/libstore/libnixstore-tests
|
|
|
|
# /src/libutil/
|
|
/src/libutil/tests
|
|
/tests/unit/libutil/libnixutil-tests
|
|
|
|
/src/nix/nix
|
|
|
|
/src/nix/doc
|
|
|
|
# /src/nix-env/
|
|
/src/nix-env/nix-env
|
|
|
|
# /src/nix-instantiate/
|
|
/src/nix-instantiate/nix-instantiate
|
|
|
|
# /src/nix-store/
|
|
/src/nix-store/nix-store
|
|
|
|
/src/nix-prefetch-url/nix-prefetch-url
|
|
|
|
/src/nix-collect-garbage/nix-collect-garbage
|
|
|
|
# /src/nix-channel/
|
|
/src/nix-channel/nix-channel
|
|
|
|
# /src/nix-build/
|
|
/src/nix-build/nix-build
|
|
|
|
/src/nix-copy-closure/nix-copy-closure
|
|
|
|
/src/error-demo/error-demo
|
|
|
|
/src/build-remote/build-remote
|
|
|
|
# /tests/functional/
|
|
/tests/functional/test-tmp
|
|
/tests/functional/common/vars-and-functions.sh
|
|
/tests/functional/result*
|
|
/tests/functional/restricted-innocent
|
|
/tests/functional/shell
|
|
/tests/functional/shell.drv
|
|
/tests/functional/config.nix
|
|
/tests/functional/ca/config.nix
|
|
/tests/functional/dyn-drv/config.nix
|
|
/tests/functional/repl-result-out
|
|
/tests/functional/debugger-test-out
|
|
/tests/functional/test-libstoreconsumer/test-libstoreconsumer
|
|
|
|
# /tests/functional/lang/
|
|
/tests/functional/lang/*.out
|
|
/tests/functional/lang/*.out.xml
|
|
/tests/functional/lang/*.err
|
|
/tests/functional/lang/*.ast
|
|
|
|
/perl/lib/Nix/Config.pm
|
|
/perl/lib/Nix/Store.cc
|
|
|
|
/misc/systemd/nix-daemon.service
|
|
/misc/systemd/nix-daemon.socket
|
|
/misc/systemd/nix-daemon.conf
|
|
/misc/upstart/nix-daemon.conf
|
|
|
|
/src/resolve-system-dependencies/resolve-system-dependencies
|
|
|
|
outputs/
|
|
|
|
*.a
|
|
*.o
|
|
*.o.tmp
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
*.exe
|
|
*.dep
|
|
*~
|
|
*.pc
|
|
*.plist
|
|
|
|
# GNU Global
|
|
GPATH
|
|
GRTAGS
|
|
GSYMS
|
|
GTAGS
|
|
|
|
# ccls
|
|
/.ccls-cache
|
|
|
|
# auto-generated compilation database
|
|
compile_commands.json
|
|
|
|
nix-rust/target
|
|
|
|
result
|
|
result-*
|
|
|
|
.vscode/
|
|
.direnv/
|
|
.envrc.local
|
|
|
|
# clangd and possibly more
|
|
.cache/
|
|
|
|
# Mac OS
|
|
.DS_Store
|
|
|
|
# ClangBuildAnalyzer output, see maintainers/buildtime_report.sh
|
|
buildtime.bin
|
|
|
|
.envrc.local
|
|
# We generate this with a Nix shell hook
|
|
/.pre-commit-config.yaml
|