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

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 {
name = "isle-build-docs";
buildInputs = [ pkgs.plantuml ];
shellHook = ''
set -e
plantuml -tsvg ./dev/*.plantuml
exit 0
'';
}
}: let
pkgs = pkgsNix.default {
inherit buildSystem hostSystem;
};
in
pkgs.mkShell {
name = "isle-build-docs";
buildInputs = [ pkgs.plantuml ];
shellHook = ''
set -e
plantuml -tsvg ./dev/*.plantuml
exit 0
'';
}