summary refs log tree commit diff
path: root/pkgs/development/interpreters/renpy
diff options
context:
space:
mode:
authorSong Wenwu <iyzsong@gmail.com>2013-12-11 13:05:07 +0800
committerSong Wenwu <iyzsong@gmail.com>2013-12-11 13:05:07 +0800
commit7d5ab6167c866c98ad6014429ce034de98e3b3f9 (patch)
tree2bcd2660cdc58df84747f06aed88b647b8c645a0 /pkgs/development/interpreters/renpy
parent48f24712dca6859a4f66dcb46c5b5056a12f0ef8 (diff)
downloadnixlib-7d5ab6167c866c98ad6014429ce034de98e3b3f9.tar
nixlib-7d5ab6167c866c98ad6014429ce034de98e3b3f9.tar.gz
nixlib-7d5ab6167c866c98ad6014429ce034de98e3b3f9.tar.bz2
nixlib-7d5ab6167c866c98ad6014429ce034de98e3b3f9.tar.lz
nixlib-7d5ab6167c866c98ad6014429ce034de98e3b3f9.tar.xz
nixlib-7d5ab6167c866c98ad6014429ce034de98e3b3f9.tar.zst
nixlib-7d5ab6167c866c98ad6014429ce034de98e3b3f9.zip
renpy: update to 6.16.3
Diffstat (limited to 'pkgs/development/interpreters/renpy')
-rw-r--r--pkgs/development/interpreters/renpy/default.nix22
1 files changed, 11 insertions, 11 deletions
diff --git a/pkgs/development/interpreters/renpy/default.nix b/pkgs/development/interpreters/renpy/default.nix
index f7d8b93f966d..60884fce69d1 100644
--- a/pkgs/development/interpreters/renpy/default.nix
+++ b/pkgs/development/interpreters/renpy/default.nix
@@ -3,11 +3,19 @@
 }:
 
 stdenv.mkDerivation {
-  name = "renpy-6.15.5";
+  name = "renpy-6.16.3";
+
+  meta = {
+    description = "Ren'Py Visual Novel Engine";
+    homepage = "http://renpy.org/";
+    license = "MIT";
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = with stdenv.lib.maintainers; [ iyzsong ];
+  };
 
   src = fetchurl {
-    url = "http://www.renpy.org/dl/6.15.5/renpy-6.15.5-source.tar.bz2";
-    sha256 = "1k57dak1yk5iyxripqn2syhwwkh70y00pnnb9i1qf19lmiirxa60";
+    url = "http://www.renpy.org/dl/6.16.3/renpy-6.16.3-source.tar.bz2";
+    sha256 = "0yd7wj85kp0hlaqlrhl40irhkmcng89vcxypyx40pqmk87gjagqn";
   };
 
   buildInputs = [
@@ -34,16 +42,8 @@ stdenv.mkDerivation {
     makeWrapper ${python}/bin/python $out/bin/renpy \
       --set PYTHONPATH $program_PYTHONPATH \
       --set RENPY_BASE $out/share/renpy \
-      --set RENPY_LESS_UPDATES 1 \
       --add-flags "-O $out/share/renpy/renpy.py"
   '';
 
   NIX_CFLAGS_COMPILE = "-I${pygame}/include/${python.libPrefix}";
-
-  meta = {
-    description = "Ren'Py Visual Novel Engine";
-    homepage = "http://renpy.org/";
-    license = "MIT";
-    platforms = stdenv.lib.platforms.linux;
-  };
 }