isle/docs/shell.nix

15 lines
209 B
Nix

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