mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
2dbd317f56
Co-authored-by: Francesco Gazzetta <fgaz@fgaz.me>
16 lines
492 B
Nix
16 lines
492 B
Nix
{ stdenv
|
|
, vengi-tools
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "vengi-tools-test-voxconvert-roundtrip";
|
|
meta.timeout = 10;
|
|
buildCommand = ''
|
|
${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools.src}/data/tests/chr_knight.qb --output chr_knight.vox
|
|
${vengi-tools}/bin/vengi-voxconvert --input chr_knight.vox --output chr_knight.qb
|
|
${vengi-tools}/bin/vengi-voxconvert --input chr_knight.qb --output chr_knight1.vox
|
|
diff chr_knight.vox chr_knight1.vox
|
|
touch $out
|
|
'';
|
|
}
|