kdePackages.kirigami-addons: 1.5.0 -> 1.6.0 (#360539)
[NixPkgs.git] / pkgs / applications / graphics / vengi-tools / test-voxconvert-all-formats.nix
blobc3e6e47adfbafe3fef2646d861befb4d6065e865
1 { stdenv
2 , vengi-tools
3 }:
5 stdenv.mkDerivation {
6   name = "vengi-tools-test-voxconvert-all-formats";
7   meta.timeout = 10;
8   buildCommand = ''
9     mkdir $out
10     for format in vox qef qbt qb vxm vxr binvox gox cub vxl csv; do
11       echo Testing $format export
12       ${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools.src}/data/tests/chr_knight.qb --output $out/chr_knight.$format
13     done
14   '';