tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
zod: migrate to wxGTK32
Weijia Wang
3 years ago
022e555d
86872d31
+5
-3
1 changed file
expand all
collapse all
unified
split
pkgs
games
zod
default.nix
+5
-3
pkgs/games/zod/default.nix
···
7
7
, SDL_ttf
8
8
, SDL_mixer
9
9
, libmysqlclient
10
10
-
, wxGTK
10
10
+
, wxGTK32
11
11
, symlinkJoin
12
12
, runCommandLocal
13
13
, makeWrapper
···
31
31
SDL_ttf
32
32
SDL_mixer
33
33
libmysqlclient
34
34
-
wxGTK
34
34
+
wxGTK32
35
35
coreutils
36
36
];
37
37
hardeningDisable = [ "format" ];
···
74
74
];
75
75
postPatch = ''
76
76
substituteInPlace zod_launcher_src/zod_launcherFrm.cpp \
77
77
-
--replace 'message = wxT("./zod");' 'message = wxT("zod");'
77
77
+
--replace 'message = wxT("./zod");' 'message = wxT("zod");' \
78
78
+
--replace "check.replace(i,1,1,'_');" "check.replace(i,1,1,(wxUniChar)'_');"
78
79
'';
79
80
preBuild = "cd zod_launcher_src";
80
81
installPhase = ''
···
106
107
homepage = "http://zod.sourceforge.net/";
107
108
maintainers = with maintainers; [ zeri ];
108
109
license = licenses.gpl3Plus; /* Says the website */
110
110
+
platforms = platforms.linux;
109
111
};
110
112
}