2021-04-20 21:31:37 +00:00
|
|
|
{
|
|
|
|
|
2023-08-13 13:51:06 +00:00
|
|
|
buildSystem ? builtins.currentSystem,
|
|
|
|
hostSystem ? buildSystem,
|
|
|
|
pkgsNix ? (import ../nix/pkgs.nix),
|
2021-04-20 21:31:37 +00:00
|
|
|
|
2023-08-13 13:51:06 +00:00
|
|
|
}: 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
|
|
|
|
'';
|
|
|
|
}
|