15 lines
218 B
Nix
15 lines
218 B
Nix
|
{
|
||
|
|
||
|
pkgs ? (import ../nix/pkgs.nix).stable,
|
||
|
|
||
|
}: pkgs.mkShell {
|
||
|
name = "cryptic-net-build-docs";
|
||
|
buildInputs = [ pkgs.plantuml ];
|
||
|
|
||
|
shellHook = ''
|
||
|
set -e
|
||
|
plantuml -tsvg ./dev/*.plantuml
|
||
|
exit 0
|
||
|
'';
|
||
|
}
|