docs: use `--subst-var-by` instead of `--replace-fair`

This commit is contained in:
NotAShelf 2024-04-20 07:45:49 +03:00
parent ba9449c644
commit 67927b5f65
No known key found for this signature in database
GPG Key ID: 02D1DD3FA08B6B29
1 changed files with 7 additions and 9 deletions

View File

@ -25,18 +25,18 @@ stdenv.mkDerivation {
${documentation-highlighter}/mono-blue.css \
${documentation-highlighter}/loader.js
cp ${./static/style.css} out/style.css
substituteInPlace ./options.md \
--replace-fail \
'@OPTIONS_JSON@' \
--subst-var-by \
OPTIONS_JSON \
${options.neovim-flake}/share/doc/nixos/options.json
substituteInPlace ./manual.md \
--replace-fail \
'@NVF_VERSION@' \
--subst-var-by \
NVF_VERSION \
${revision}
# copy stylesheet
cp ${./static/style.css} out/style.css
# copy release notes
cp -vr ${./release-notes} release-notes
@ -45,11 +45,9 @@ stdenv.mkDerivation {
nixos-render-docs manual html \
--manpage-urls ./manpage-urls.json \
--revision ${lib.trivial.revisionWithDefault revision} \
--stylesheet style.css \
--script highlightjs/highlight.pack.js \
--script highlightjs/loader.js \
--stylesheet style.css \
--stylesheet highlightjs/tomorrow-night.min.css \
--stylesheet highlightjs/highlight-style.css \
--toc-depth 2 \
--section-toc-depth 1 \
manual.md \