Fix doc generation, remove cryptic references from plantuml

This commit is contained in:
Brian Picciano 2023-08-13 15:51:06 +02:00
parent 9fa32749b9
commit fafd711b1b
3 changed files with 26 additions and 21 deletions

View File

@ -39,4 +39,3 @@ state AppDir {
} }
@enduml @enduml

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -1,14 +1,20 @@
{ {
pkgs ? (import ../nix/pkgs.nix).pkgs, buildSystem ? builtins.currentSystem,
hostSystem ? buildSystem,
pkgsNix ? (import ../nix/pkgs.nix),
}: pkgs.mkShell { }: let
name = "isle-build-docs"; pkgs = pkgsNix.default {
buildInputs = [ pkgs.plantuml ]; inherit buildSystem hostSystem;
};
shellHook = '' in
set -e pkgs.mkShell {
plantuml -tsvg ./dev/*.plantuml name = "isle-build-docs";
exit 0 buildInputs = [ pkgs.plantuml ];
''; shellHook = ''
} set -e
plantuml -tsvg ./dev/*.plantuml
exit 0
'';
}