Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

easyrpg-player: 0.5.3 -> 0.5.4

c0bw3b 83a3cf01 a0a885c5

+18 -7
+18 -7
pkgs/games/easyrpg-player/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, harfbuzz ? null 2 - , liblcf, libpng, libsndfile ? null, libxmp ? null, libvorbis ? null, mpg123 ? null 3 - , opusfile ? null, pixman, SDL2, speexdsp ? null, wildmidi ? null, zlib }: 4 5 stdenv.mkDerivation rec { 6 name = "easyrpg-player-${version}"; 7 - version = "0.5.3"; 8 9 src = fetchFromGitHub { 10 owner = "EasyRPG"; 11 repo = "Player"; 12 rev = version; 13 - sha256 = "1cn3g08ap6cf812s8p3ilf31q7y7y4knp1s0gk45mqcz215cpd8q"; 14 }; 15 16 nativeBuildInputs = [ cmake doxygen pkgconfig ]; 17 18 buildInputs = [ 19 freetype 20 harfbuzz 21 liblcf 22 libpng 23 libsndfile 24 libxmp 25 - libvorbis 26 mpg123 27 opusfile 28 - SDL2 29 pixman 30 speexdsp 31 wildmidi ··· 33 ]; 34 35 meta = with stdenv.lib; { 36 homepage = https://easyrpg.org/; 37 license = licenses.gpl3; 38 maintainers = with maintainers; [ yegortimoshenko ];
··· 1 + { stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, glib, harfbuzz ? null 2 + , liblcf, libpng, libsndfile ? null, libvorbis ? null, libxmp ? null 3 + , libXcursor, libXext, libXi, libXinerama, libXrandr, libXScrnSaver, libXxf86vm 4 + , mpg123 ? null, opusfile ? null, pcre, pixman, SDL2_mixer, speexdsp ? null, wildmidi ? null, zlib }: 5 6 stdenv.mkDerivation rec { 7 name = "easyrpg-player-${version}"; 8 + version = "0.5.4"; 9 10 src = fetchFromGitHub { 11 owner = "EasyRPG"; 12 repo = "Player"; 13 rev = version; 14 + sha256 = "1k1b5ws48h1ylarbcfsxyvajl0fdzmi3db8y3m8iq4fg3f0yslg8"; 15 }; 16 17 nativeBuildInputs = [ cmake doxygen pkgconfig ]; 18 19 buildInputs = [ 20 freetype 21 + glib 22 harfbuzz 23 liblcf 24 libpng 25 libsndfile 26 + libvorbis 27 libxmp 28 + libXcursor 29 + libXext 30 + libXi 31 + libXinerama 32 + libXrandr 33 + libXScrnSaver 34 + libXxf86vm 35 mpg123 36 opusfile 37 + SDL2_mixer 38 + pcre 39 pixman 40 speexdsp 41 wildmidi ··· 43 ]; 44 45 meta = with stdenv.lib; { 46 + description = "RPG Maker 2000/2003 and EasyRPG games interpreter"; 47 homepage = https://easyrpg.org/; 48 license = licenses.gpl3; 49 maintainers = with maintainers; [ yegortimoshenko ];