nixos-configs/apps/gen-docs/default.nix
matt1432 546eda3ee2
All checks were successful
Discord / discord commits (push) Has been skipped
feat: refactor to add apps README
2025-01-20 12:34:07 -05:00

15 lines
267 B
Nix

{
writeShellApplication,
jq,
pandoc,
...
}:
writeShellApplication {
name = "gen-docs";
runtimeInputs = [jq pandoc];
text = builtins.readFile ./script.sh;
meta.description = ''
Generates the READMEs in this repository from nix attributes.
'';
}