2022-02-10 20:34:41 +00:00
|
|
|
{ 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
|
2024-04-21 15:54:59 +00:00
|
|
|
${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools.src}/data/tests/chr_knight.qb --output $out/chr_knight.$format
|
2022-02-10 20:34:41 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
}
|