feat(gen-docs): clean up presentation of output

This commit is contained in:
matt1432 2025-01-20 11:40:10 -05:00
parent d2c7ee7e25
commit b32fbc08bd
3 changed files with 5 additions and 4 deletions
apps/gen-docs

View file

@ -1,10 +1,11 @@
{
writeShellApplication,
jq,
pandoc,
...
}:
writeShellApplication {
name = "gen-docs";
runtimeInputs = [pandoc];
runtimeInputs = [jq pandoc];
text = builtins.readFile ./script.sh;
}