2021-12-28 15:24:31 +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
|
2023-03-13 08:50:19 +00:00
|
|
|
${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools.src}/data/voxedit/chr_knight.qb --output $out/chr_knight.$format
|
2021-12-28 15:24:31 +00:00
|
|
|
done
|
|
|
|
'';
|
|
|
|
}
|