about summary refs log tree commit diff
path: root/pkgs/games/gemrb
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2022-08-30 11:00:28 +0800
committerPeter Hoeg <peter@hoeg.com>2022-09-30 17:39:58 +0800
commitbaf2e6d069a0ad3540939c313c8ee9f2de149fdd (patch)
tree5aada624b326a9cad0a42019899e4107b1a54447 /pkgs/games/gemrb
parent81b1c19c5efb638b7fe166fd73dc91565e50bc6e (diff)
gemrb: 0.9.0 -> 0.9.1
Diffstat (limited to 'pkgs/games/gemrb')
-rw-r--r--pkgs/games/gemrb/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/gemrb/default.nix b/pkgs/games/gemrb/default.nix
index b29eed160cde6..583c6ba902263 100644
--- a/pkgs/games/gemrb/default.nix
+++ b/pkgs/games/gemrb/default.nix
@@ -11,7 +11,7 @@
 , libvlc
 , libvorbis
 , openal
-, python2 # 0.9.0 crashes after character generation with py3, so stick to py2 for now
+, python3
 , zlib
 }:
 
@@ -27,13 +27,13 @@ let
 in
 stdenv.mkDerivation rec {
   pname = "gemrb";
-  version = "0.9.0";
+  version = "0.9.1";
 
   src = fetchFromGitHub {
     owner = "gemrb";
     repo = "gemrb";
     rev = "v${version}";
-    sha256 = "sha256-h/dNPY0QZ2m7aYgRla3r1E8APJqO99ePa2ABhhh3Aoc=";
+    hash = "sha256-xc59Iyrmbmo7Kxio0lLpvVlpdoeM/vfmBLkJdzJsSPY=";
   };
 
   buildInputs = [
@@ -45,7 +45,7 @@ stdenv.mkDerivation rec {
     libpng
     libvorbis
     openal
-    python2
+    python3
     zlib
   ]
   ++ optional withVLC libvlc;