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