From e681975fde1ba97fdd3b267ffc7ac3a9e3452b31 Mon Sep 17 00:00:00 2001 From: tnichols217 <62992267+tnichols217@users.noreply.github.com> Date: Thu, 23 Oct 2025 13:15:51 -0400 Subject: [PATCH] add png output --- nix/build.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/build.nix b/nix/build.nix index f0d9a02..3532866 100755 --- a/nix/build.nix +++ b/nix/build.nix @@ -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 ''; } \ No newline at end of file