mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
15 lines
408 B
Nix
15 lines
408 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}/share/vengi-voxedit/chr_knight.qb --output $out/chr_knight.$format
|
|
done
|
|
'';
|
|
}
|