-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "vengi-tools: remove failing roundtrip test"
- Loading branch information
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
pkgs/applications/graphics/vengi-tools/test-voxconvert-roundtrip.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ stdenv | ||
, vengi-tools | ||
}: | ||
|
||
stdenv.mkDerivation { | ||
name = "vengi-tools-test-voxconvert-roundtrip"; | ||
meta.timeout = 10; | ||
buildCommand = '' | ||
${vengi-tools}/bin/vengi-voxconvert --input ${vengi-tools}/share/vengi-voxedit/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 | ||
''; | ||
} |