2019-11-13 15:32:10 +01:00
|
|
|
{ stdenv, fetchurl, python2Packages, pkgconfig, SDL2
|
2019-11-10 17:44:34 +01:00
|
|
|
, libpng, ffmpeg, freetype, glew, libGL, libGLU, fribidi, zlib
|
2017-03-17 14:14:08 +01:00
|
|
|
, glib
|
2013-06-09 06:45:56 +02:00
|
|
|
}:
|
|
|
|
|
2019-11-13 15:32:10 +01:00
|
|
|
with python2Packages;
|
2016-08-14 12:01:09 +02:00
|
|
|
|
2018-03-22 03:26:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "renpy";
|
2019-11-06 18:53:53 +01:00
|
|
|
version = "7.3.5";
|
2013-12-11 06:05:07 +01:00
|
|
|
|
2018-03-22 03:26:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-12-11 06:05:07 +01:00
|
|
|
description = "Ren'Py Visual Novel Engine";
|
2018-06-27 22:12:57 +02:00
|
|
|
homepage = https://renpy.org/;
|
2018-03-22 03:26:29 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.linux;
|
2013-12-11 06:05:07 +01:00
|
|
|
};
|
2013-06-09 06:45:56 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-22 03:26:29 +01:00
|
|
|
url = "https://www.renpy.org/dl/${version}/renpy-${version}-source.tar.bz2";
|
2019-11-06 18:53:53 +01:00
|
|
|
sha256 = "1anr5cfbvbsbik4v4rvrkdkciwhg700k4lydfbs4n85raimz9mw4";
|
2013-06-09 06:45:56 +02:00
|
|
|
};
|
|
|
|
|
2018-03-22 03:26:29 +01:00
|
|
|
patches = [
|
|
|
|
./launcherenv.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace launcher/game/choose_directory.rpy --replace /usr/bin/python ${python.interpreter}
|
|
|
|
'';
|
|
|
|
|
2017-09-14 21:24:37 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2013-06-09 06:45:56 +02:00
|
|
|
buildInputs = [
|
2018-03-22 03:26:29 +01:00
|
|
|
python cython wrapPython tkinter
|
2019-11-10 17:44:34 +01:00
|
|
|
SDL2 libpng ffmpeg freetype glew libGLU libGL fribidi zlib pygame_sdl2 glib
|
2013-06-09 06:45:56 +02:00
|
|
|
];
|
|
|
|
|
2018-03-22 03:26:29 +01:00
|
|
|
pythonPath = [ pygame_sdl2 tkinter ];
|
2013-06-09 06:45:56 +02:00
|
|
|
|
2019-09-09 01:38:31 +02:00
|
|
|
RENPY_DEPS_INSTALL = stdenv.lib.concatStringsSep "::" (map (path: path) [
|
2019-11-10 17:44:34 +01:00
|
|
|
SDL2 SDL2.dev libpng ffmpeg ffmpeg.out freetype glew.dev glew.out libGLU libGL fribidi zlib
|
2013-06-09 06:45:56 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
python module/setup.py build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/share/renpy
|
2018-03-22 03:26:29 +01:00
|
|
|
cp -vr * $out/share/renpy
|
|
|
|
rm -rf $out/share/renpy/module
|
|
|
|
|
2013-06-09 06:45:56 +02:00
|
|
|
python module/setup.py install --prefix=$out --install-lib=$out/share/renpy/module
|
|
|
|
|
|
|
|
makeWrapper ${python}/bin/python $out/bin/renpy \
|
2017-03-17 14:14:08 +01:00
|
|
|
--set PYTHONPATH $PYTHONPATH \
|
2013-06-09 06:45:56 +02:00
|
|
|
--set RENPY_BASE $out/share/renpy \
|
|
|
|
--add-flags "-O $out/share/renpy/renpy.py"
|
|
|
|
'';
|
|
|
|
|
2017-03-17 14:14:08 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${pygame_sdl2}/include/${python.libPrefix}";
|
2013-06-09 06:45:56 +02:00
|
|
|
}
|