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
, 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");'
0
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 */
0
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
}