isle/docs/shell.nix

15 lines
209 B
Nix
Raw Normal View History

{
2022-10-20 20:30:30 +00:00
pkgs ? (import ../nix/pkgs.nix).pkgs,
}: pkgs.mkShell {
name = "isle-build-docs";
buildInputs = [ pkgs.plantuml ];
shellHook = ''
set -e
plantuml -tsvg ./dev/*.plantuml
exit 0
'';
}