nixpkgs/home/packages/custom/typo3-documentation-rendering/default.nix
Daniel Siepmann dbf35c677e
Add new TYPO3 documentation rendering based on phpDocumentor
Keep old rendering as some projects are not migrated yet and need the
old rendering.
2024-03-14 07:22:30 +01:00

23 lines
428 B
Nix

{
writeShellApplication,
podman
}:
writeShellApplication {
name = "custom-typo3-render-documentation";
runtimeInputs = [
podman
];
# Repository: https://github.com/TYPO3-Documentation/render-guides
text = ''
mkdir -p Documentation-GENERATED-temp
podman \
run --rm \
-v "$(pwd)":/project \
-it ghcr.io/typo3-documentation/render-guides:latest \
--config=Documentation
'';
}