yetris: fix compilation on aarch64-linux

https://hydra.nixos.org/build/297262484/nixlog/1

char's are not signed by default on aarch64 systems.

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>

+9
+9
pkgs/by-name/ye/yetris/package.nix
··· 17 hash = "sha256-k9CXXIaDk1eAtRBEj0VCfE+D1FtmIDX3niubAdrfjqw="; 18 }; 19 20 buildInputs = [ 21 ncurses 22 ];
··· 17 hash = "sha256-k9CXXIaDk1eAtRBEj0VCfE+D1FtmIDX3niubAdrfjqw="; 18 }; 19 20 + postPatch = '' 21 + substituteInPlace src/Game/Entities/RotationSystemSRS.cpp \ 22 + --replace-fail 'char' 'signed char' 23 + substituteInPlace src/Game/Entities/PieceDefinitions.cpp \ 24 + --replace-fail 'char' 'signed char' 25 + substituteInPlace src/Game/Entities/PieceDefinitions.hpp \ 26 + --replace-fail 'char' 'signed char' 27 + ''; 28 + 29 buildInputs = [ 30 ncurses 31 ];