You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.3 KiB
50 lines
1.3 KiB
{ stdenv, fetchurl, pythonPackages, pkgconfig, SDL |
|
, libpng, ffmpeg, freetype, glew, mesa, fribidi, zlib |
|
}: |
|
|
|
with pythonPackages; |
|
|
|
stdenv.mkDerivation { |
|
name = "renpy-6.17.6"; |
|
|
|
meta = { |
|
description = "Ren'Py Visual Novel Engine"; |
|
homepage = "http://renpy.org/"; |
|
license = stdenv.lib.licenses.mit; |
|
platforms = stdenv.lib.platforms.linux; |
|
}; |
|
|
|
src = fetchurl { |
|
url = "http://www.renpy.org/dl/6.17.6/renpy-6.17.6-source.tar.bz2"; |
|
sha256 = "0rkynw9cnr1zqdinz037d9zig6grhp2ca2pyxk80vhdpjb0xrkic"; |
|
}; |
|
|
|
buildInputs = [ |
|
python cython pkgconfig wrapPython |
|
SDL libpng ffmpeg freetype glew mesa fribidi zlib pygame |
|
]; |
|
|
|
pythonPath = [ pygame ]; |
|
|
|
RENPY_DEPS_INSTALL = stdenv.lib.concatStringsSep "::" (map (path: "${path}") [ |
|
SDL libpng ffmpeg freetype glew mesa fribidi zlib |
|
]); |
|
|
|
buildPhase = '' |
|
python module/setup.py build |
|
''; |
|
|
|
installPhase = '' |
|
mkdir -p $out/share/renpy |
|
cp -r renpy renpy.py $out/share/renpy |
|
python module/setup.py install --prefix=$out --install-lib=$out/share/renpy/module |
|
|
|
wrapPythonPrograms |
|
makeWrapper ${python}/bin/python $out/bin/renpy \ |
|
--set PYTHONPATH $program_PYTHONPATH \ |
|
--set RENPY_BASE $out/share/renpy \ |
|
--add-flags "-O $out/share/renpy/renpy.py" |
|
''; |
|
|
|
NIX_CFLAGS_COMPILE = "-I${pygame}/include/${python.libPrefix}"; |
|
}
|
|
|