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