zod: migrate to wxGTK32

+5 -3
+5 -3
pkgs/games/zod/default.nix
··· 7 , SDL_ttf 8 , SDL_mixer 9 , libmysqlclient 10 - , wxGTK 11 , symlinkJoin 12 , runCommandLocal 13 , makeWrapper ··· 31 SDL_ttf 32 SDL_mixer 33 libmysqlclient 34 - wxGTK 35 coreutils 36 ]; 37 hardeningDisable = [ "format" ]; ··· 74 ]; 75 postPatch = '' 76 substituteInPlace zod_launcher_src/zod_launcherFrm.cpp \ 77 - --replace 'message = wxT("./zod");' 'message = wxT("zod");' 78 ''; 79 preBuild = "cd zod_launcher_src"; 80 installPhase = '' ··· 106 homepage = "http://zod.sourceforge.net/"; 107 maintainers = with maintainers; [ zeri ]; 108 license = licenses.gpl3Plus; /* Says the website */ 109 }; 110 }
··· 7 , SDL_ttf 8 , SDL_mixer 9 , libmysqlclient 10 + , wxGTK32 11 , symlinkJoin 12 , runCommandLocal 13 , makeWrapper ··· 31 SDL_ttf 32 SDL_mixer 33 libmysqlclient 34 + wxGTK32 35 coreutils 36 ]; 37 hardeningDisable = [ "format" ]; ··· 74 ]; 75 postPatch = '' 76 substituteInPlace zod_launcher_src/zod_launcherFrm.cpp \ 77 + --replace 'message = wxT("./zod");' 'message = wxT("zod");' \ 78 + --replace "check.replace(i,1,1,'_');" "check.replace(i,1,1,(wxUniChar)'_');" 79 ''; 80 preBuild = "cd zod_launcher_src"; 81 installPhase = '' ··· 107 homepage = "http://zod.sourceforge.net/"; 108 maintainers = with maintainers; [ zeri ]; 109 license = licenses.gpl3Plus; /* Says the website */ 110 + platforms = platforms.linux; 111 }; 112 }