add png output

This commit is contained in:
tnichols217 2025-10-23 13:15:51 -04:00
parent 8447f869a0
commit e681975fde
No known key found for this signature in database

View File

@ -12,10 +12,11 @@ stdenv.mkDerivation {
buildPhase = ''
dot -Tpdf brotherhood.dot > brotherhood.pdf
dot -Tsvg brotherhood.dot > brotherhood.svg
dot -Tpng brotherhood.dot > brotherhood.png
'';
installPhase = ''
mkdir -p $out
cp -r *.pdf *.svg $out
cp -r *.pdf *.svg *.png $out
'';
}