nixos-configs/apps/gen-docs/default.nix

16 lines
267 B
Nix
Raw Permalink Normal View History

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