nixpkgs/pkgs/applications/graphics/vengi-tools/test-voxconvert-all-formats.nix
R. Ryantm 2dbd317f56 vengi-tools: 0.0.28 -> 0.0.29
Co-authored-by: Francesco Gazzetta <fgaz@fgaz.me>
2024-03-18 09:36:04 +01:00

16 lines
403 B
Nix

{ stdenv
, vengi-tools
}:
stdenv.mkDerivation {
name = "vengi-tools-test-voxconvert-all-formats";
meta.timeout = 10;
buildCommand = ''
mkdir $out
for format in vox qef qbt qb vxm vxr binvox gox cub vxl csv; do
echo Testing $format export
${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools.src}/data/tests/chr_knight.qb --output $out/chr_knight.$format
done
'';
}