biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / graphics / vengi-tools / test-voxconvert-roundtrip.nix
bloba683bff7a10b66d58e35b1707d964a404e951ed3
1 { stdenv
2 , vengi-tools
3 }:
5 stdenv.mkDerivation {
6   name = "vengi-tools-test-voxconvert-roundtrip";
7   meta.timeout = 10;
8   buildCommand = ''
9     ${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools.src}/data/tests/chr_knight.qb --output chr_knight.vox
10     ${vengi-tools}/bin/vengi-voxconvert --input chr_knight.vox --output chr_knight.qb
11     ${vengi-tools}/bin/vengi-voxconvert --input chr_knight.qb --output chr_knight1.vox
12     diff chr_knight.vox chr_knight1.vox
13     touch $out
14   '';