Fix doc generation, remove cryptic references from plantuml
This commit is contained in:
parent
9fa32749b9
commit
fafd711b1b
@ -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 |
@ -1,11 +1,17 @@
|
|||||||
{
|
{
|
||||||
|
|
||||||
pkgs ? (import ../nix/pkgs.nix).pkgs,
|
buildSystem ? builtins.currentSystem,
|
||||||
|
hostSystem ? buildSystem,
|
||||||
|
pkgsNix ? (import ../nix/pkgs.nix),
|
||||||
|
|
||||||
}: pkgs.mkShell {
|
}: let
|
||||||
|
pkgs = pkgsNix.default {
|
||||||
|
inherit buildSystem hostSystem;
|
||||||
|
};
|
||||||
|
in
|
||||||
|
pkgs.mkShell {
|
||||||
name = "isle-build-docs";
|
name = "isle-build-docs";
|
||||||
buildInputs = [ pkgs.plantuml ];
|
buildInputs = [ pkgs.plantuml ];
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
set -e
|
set -e
|
||||||
plantuml -tsvg ./dev/*.plantuml
|
plantuml -tsvg ./dev/*.plantuml
|
||||||
|
Loading…
Reference in New Issue
Block a user