nixos-configs/apps/gen-docs/default.nix
matt1432 b32fbc08bd
All checks were successful
Discord / discord commits (push) Has been skipped
feat(gen-docs): clean up presentation of output
2025-01-20 11:40:10 -05:00

11 lines
170 B
Nix

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