docs/packages/nixpkgs-manual/default.nix

142 lines
4 KiB
Nix
Raw Normal View History

2024-06-30 05:43:43 +00:00
{
lib,
2024-06-30 21:43:38 +00:00
pkgs,
2024-06-30 05:43:43 +00:00
nixos-render-docs,
python3,
perl,
stdenvNoCC,
inputs,
2024-06-30 21:43:38 +00:00
...
2024-06-30 05:43:43 +00:00
}:
2024-07-01 20:40:19 +00:00
let
optionsDoc = pkgs.nixosOptionsDoc {
inherit
(pkgs.lib.evalModules {
modules = [ "${inputs.nixpkgs.outPath}/pkgs/top-level/config.nix" ];
class = "nixpkgsConfig";
})
options
;
documentType = "none";
transformOptions =
opt:
opt
// {
declarations = map (
decl:
if lib.hasPrefix (toString ../..) (toString decl) then
let
subpath = lib.removePrefix "/" (lib.removePrefix (toString ../.) (toString decl));
in
{
url = "https://github.com/NixOS/nixpkgs/blob/master/${subpath}";
name = subpath;
}
else
decl
) opt.declarations;
};
};
2024-07-08 16:00:30 +00:00
optionsMD = optionsDoc.optionsCommonMark;
2024-07-21 01:58:12 +00:00
p = "find . -type f -exec perl -pi -e";
s = "find . -type f -exec sed -i";
2024-07-01 20:40:19 +00:00
in
2024-06-30 05:43:43 +00:00
stdenvNoCC.mkDerivation {
name = "nixpkgs-manual-md";
nativeBuildInputs = [
nixos-render-docs
python3
perl
];
src = inputs.nixpkgs;
postPatch = ''
2024-07-01 20:40:19 +00:00
cd doc
2024-06-30 05:43:43 +00:00
'';
2024-06-30 22:10:42 +00:00
pythonInterpreterTable = pkgs.callPackage ./python-interp-table.nix { };
2024-06-30 05:43:43 +00:00
passAsFile = [ "pythonInterpreterTable" ];
buildPhase = ''
substituteInPlace ./languages-frameworks/python.section.md --subst-var-by python-interpreter-table "$(<"$pythonInterpreterTablePath")"
2024-06-30 22:10:42 +00:00
mv ./functions/library.md.in ./functions/library.md
2024-06-30 05:43:43 +00:00
substitute ./manual.md.in ./manual.md \
--replace-fail '@MANUAL_VERSION@' '${lib.version}'
mkdir out
2024-07-08 16:00:30 +00:00
cp ${optionsMD} out/options.md
2024-06-30 05:43:43 +00:00
mv preface.chapter.md out/index.md
2024-07-21 01:58:12 +00:00
mv build-helpers out/Build-Helpers
mv build-helpers.md out/Build-Helpers/index.md
mv development out/Development
mv development.md out/Development/index.md
mv functions out/Functions
mv functions.md out/Functions/index.md
mv hooks out/Hooks
mv languages-frameworks out/Languages-And-Frameworks
mkdir out/Library-Reference
cp ${pkgs.amg.nixpkgs-lib-docs}/*.md out/Library-Reference/
mv module-system out/Module-System
mv packages out/Packages
mv stdenv out/Standard-Environment
mv stdenv.md out/Standard-Environment/index.md
mv using out/Using-Nixpkgs
mv using-nixpkgs.md out/Using-Nixpkgs/index.md
2024-06-30 05:43:43 +00:00
pushd out
2024-07-21 01:58:12 +00:00
# Fix-up options page
sed -i 's!${inputs.nixpkgs.outPath}!https://github.com/NixOS/nixpkgs/blob/master!g' options.md
sed -i 's!file://!!g' options.md
sed -i 's/\\//g' options.md
# Clean up all index pages
${s} '/```{=include=}/,$d' {} \;
# Remove all ::: sequences
${s} 's/\s*::://g' {} \;
# Indent all nix codeblocks
# ${p} 's/\n```nix/\ \ \ \ ```nix/g' -0 {} \;
# Replace nix-style note admonitions
${p} 's/\s*(\w?){.note}/!!! note/' {} \;
${s} '/^\!\!\![[:space:]]note/,/^$/s/^/\ \ \ \ /' {} \;
${s} 's/^\ \ \ \ !!! note/!!! note/' {} \;
# Replace nix-style warning admonitions
${p} 's/\s*(\w?){.warning}/!!! warning/' {} \;
${s} '/^\!\!\![[:space:]]warning/,/^$/s/^/\ \ \ \ /' {} \;
${s} 's/^\ \ \ \ !!! warning/!!! warning/' {} \;
# Replace nix-style tip admonitions
${p} 's/\s*(\w?){.tip}/!!! tip/' {} \;
${s} '/^\!\!\![[:space:]]tip/,/^$/s/^/\ \ \ \ /' {} \;
${s} 's/^\ \ \ \ !!! tip/!!! tip/' {} \;
# Replace nix-style example admonitions
${p} 's/\s*(\w?){.example.*}/!!! example/' {} \;
${p} 's/\n\n# /\ \"/g' -0 {} \;
${s} '/^!!! example/,/^$/s/^/\ \ \ \ /' {} \;
${s} 's/^\ \ \ \ !!! example/!!! example/' {} \;
# Have to special-case some example admonitions
${p} 's/\n\n\n/placeholderstring123/g' -0 {} \;
${s} '/^!!! example/,/placeholderstring123/s/^/\ \ \ \ /' {} \;
${p} 's/placeholderstring123/\n\n\n/g' -0 {} \;
${s} 's/^\ \ \ \ !!! example/!!! example/' {} \;
${p} 's/example\n[ ]{8}#### /example "/g' -0 {} \;
${s} '/^!!! example \"/s/$/\"/' {} \;
2024-06-30 05:43:43 +00:00
popd
'';
installPhase = ''
mkdir $out
mv out/* $out
'';
}