renpy: don't use deprecated stubs on Darwin
This commit is contained in:
@@ -65,19 +65,23 @@ stdenv.mkDerivation (finalAttrs: {
|
||||
tkinter
|
||||
]);
|
||||
|
||||
RENPY_DEPS_INSTALL = lib.concatStringsSep "::" [
|
||||
ffmpeg.lib
|
||||
freetype
|
||||
fribidi
|
||||
glew.dev
|
||||
harfbuzz.dev
|
||||
libGL
|
||||
libGLU
|
||||
libpng
|
||||
SDL2
|
||||
(lib.getDev SDL2)
|
||||
zlib
|
||||
];
|
||||
RENPY_DEPS_INSTALL = lib.concatStringsSep "::" (
|
||||
[
|
||||
ffmpeg.lib
|
||||
freetype
|
||||
fribidi
|
||||
glew.dev
|
||||
harfbuzz.dev
|
||||
libpng
|
||||
SDL2
|
||||
(lib.getDev SDL2)
|
||||
zlib
|
||||
]
|
||||
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [
|
||||
libGL
|
||||
libGLU
|
||||
]
|
||||
);
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user