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

Merge pull request #50429 from c0bw3b/pkg/easyrpg

{easyrpg-player,liblcf}: 0.5.3 -> 0.5.4

authored by

Renaud and committed by
GitHub
d554f80b 218f12db

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