doc: Fix missing pre/post hooks everywhere

This commit is contained in:
Niklas Hambüchen 2024-06-10 10:45:36 +02:00
parent 2795c506fe
commit ee6c2bd2eb
10 changed files with 51 additions and 4 deletions

View file

@ -59,7 +59,11 @@ Such a Lisp can be now used e.g. to compile your sources:
```nix
{
buildPhase = ''
runHook preBuild
${sbcl'}/bin/sbcl --load my-build-file.lisp
runHook postBuild
'';
}
```