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

11 lines
161 B
Nix
Raw Normal View History

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