3
0
Fork 0
forked from mirrors/nixpkgs

zod: migrate to wxGTK32

This commit is contained in:
Weijia Wang 2022-10-14 05:59:59 +02:00
parent 86872d31b1
commit 022e555d67

View file

@ -7,7 +7,7 @@
, SDL_ttf
, SDL_mixer
, libmysqlclient
, wxGTK
, wxGTK32
, symlinkJoin
, runCommandLocal
, makeWrapper
@ -31,7 +31,7 @@ let
SDL_ttf
SDL_mixer
libmysqlclient
wxGTK
wxGTK32
coreutils
];
hardeningDisable = [ "format" ];
@ -74,7 +74,8 @@ let
];
postPatch = ''
substituteInPlace zod_launcher_src/zod_launcherFrm.cpp \
--replace 'message = wxT("./zod");' 'message = wxT("zod");'
--replace 'message = wxT("./zod");' 'message = wxT("zod");' \
--replace "check.replace(i,1,1,'_');" "check.replace(i,1,1,(wxUniChar)'_');"
'';
preBuild = "cd zod_launcher_src";
installPhase = ''
@ -106,5 +107,6 @@ in
homepage = "http://zod.sourceforge.net/";
maintainers = with maintainers; [ zeri ];
license = licenses.gpl3Plus; /* Says the website */
platforms = platforms.linux;
};
}