Fix doc generation, remove cryptic references from plantuml

main
Brian Picciano 9 months ago
parent 9fa32749b9
commit fafd711b1b
  1. 1
      docs/dev/daemon-process-tree.plantuml
  2. 18
      docs/dev/daemon-process-tree.svg
  3. 28
      docs/shell.nix

@ -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

@ -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
'';
}

Loading…
Cancel
Save