Skip to content

Commit

Permalink
renpy: 7.1.3 -> 7.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
callahad committed Mar 4, 2019
1 parent 981ce34 commit 154a7d3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/interpreters/renpy/default.nix
Expand Up @@ -7,7 +7,7 @@ with pythonPackages;

stdenv.mkDerivation rec {
name = "renpy-${version}";
version = "7.1.3";
version = "7.2.0";

meta = with stdenv.lib; {
description = "Ren'Py Visual Novel Engine";
Expand All @@ -18,7 +18,7 @@ stdenv.mkDerivation rec {

src = fetchurl {
url = "https://www.renpy.org/dl/${version}/renpy-${version}-source.tar.bz2";
sha256 = "0z6s1vzjb5jh0i79pv5kgynfrzqj1a1f3afrpmp2aaqbrljkidbn";
sha256 = "1pnzxmh37zzldvlyklk2wgc8xbh3hm3wwmbl70zdphybjrxvc7i5";
};

patches = [
Expand Down
14 changes: 5 additions & 9 deletions pkgs/development/python-modules/pygame_sdl2/default.nix
Expand Up @@ -4,30 +4,26 @@
buildPythonPackage rec {
pname = "pygame_sdl2";
version = "2.1.0";
renpy_version = "6.99.14";
renpy_version = "7.2.0";
name = "${pname}-${version}-${renpy_version}";

src = fetchurl {
url = "https://www.renpy.org/dl/${renpy_version}/pygame_sdl2-${version}-for-renpy-${renpy_version}.tar.gz";
sha256 = "1zsnb2bivbwysgxmfg9iv12arhpf3gqkmqinhciz955hlqv016b9";
sha256 = "1amgsb6mm8ssf7vdcs5dr8rlxrgyhh29m4i573z1cw61ynd7vgcw";
};

# force rebuild of headers needed for install
prePatch = ''
rm -rf gen gen3
'';

patches = [
# fix for recent sdl2
(fetchpatch {
url = "https://github.com/apoleon/pygame_sdl2/commit/ced6051f4a4559a725804cc58c079e1efea0a573.patch";
sha256 = "08rqjzvdlmmdf8kyd8ws5lzjy1mrwnds4fdy38inkyw7saydcxyr";
})
nativeBuildInputs = [
SDL2.dev cython
];

buildInputs = [
SDL2 SDL2_image SDL2_ttf SDL2_mixer
cython libjpeg libpng
libjpeg libpng
];


Expand Down

0 comments on commit 154a7d3

Please sign in to comment.