summary refs log tree commit diff
path: root/pkgs/games/easyrpg-player
diff options
context:
space:
mode:
authorRenaud <c0bw3b@users.noreply.github.com>2019-05-05 19:29:25 +0200
committerGitHub <noreply@github.com>2019-05-05 19:29:25 +0200
commit3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd (patch)
tree8249a5c37821a63d43b3b260c371856ae7d5c6ab /pkgs/games/easyrpg-player
parentcbae7a2bbd156fcda89ff03a2fa9bddf95c0a674 (diff)
downloadnixpkgs-3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd.tar
nixpkgs-3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd.tar.gz
nixpkgs-3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd.tar.bz2
nixpkgs-3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd.tar.lz
nixpkgs-3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd.tar.xz
nixpkgs-3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd.tar.zst
nixpkgs-3cb1274745b00cf9d6b3cfb6d5658f99cf9511fd.zip
easyrpg-player: 0.5.4 -> 0.6.0
Changelog:
https://blog.easyrpg.org/2019/03/easyrpg-player-0-6-0-preemptive-attack/
Diffstat (limited to 'pkgs/games/easyrpg-player')
-rw-r--r--pkgs/games/easyrpg-player/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/easyrpg-player/default.nix b/pkgs/games/easyrpg-player/default.nix
index 75763907425..c8b85da213a 100644
--- a/pkgs/games/easyrpg-player/default.nix
+++ b/pkgs/games/easyrpg-player/default.nix
@@ -5,13 +5,13 @@
 
 stdenv.mkDerivation rec {
   name = "easyrpg-player-${version}";
-  version = "0.5.4";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "EasyRPG";
     repo = "Player";
     rev = version;
-    sha256 = "1k1b5ws48h1ylarbcfsxyvajl0fdzmi3db8y3m8iq4fg3f0yslg8";
+    sha256 = "0b0c4wwqldjf37sf7zldnbgvfmyqcvpjvhs949gb3r8i5cffzm58";
   };
 
   nativeBuildInputs = [ cmake doxygen pkgconfig ];
@@ -44,7 +44,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "RPG Maker 2000/2003 and EasyRPG games interpreter";
-    homepage = https://easyrpg.org/;
+    homepage = "https://easyrpg.org/";
     license = licenses.gpl3;
     maintainers = with maintainers; [ yegortimoshenko ];
     platforms = platforms.linux;