From a0a885c5cd1733458e74ae3256aa5d28d85b67bd Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Fri, 9 Nov 2018 11:47:21 -0800 Subject: [PATCH 1/2] liblcf: 0.5.3 -> 0.5.4 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/liblcf/versions --- pkgs/development/libraries/liblcf/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/liblcf/default.nix b/pkgs/development/libraries/liblcf/default.nix index 95b6b657fa2b..8154a74aef5d 100644 --- a/pkgs/development/libraries/liblcf/default.nix +++ b/pkgs/development/libraries/liblcf/default.nix @@ -2,19 +2,20 @@ stdenv.mkDerivation rec { name = "liblcf-${version}"; - version = "0.5.3"; + version = "0.5.4"; src = fetchFromGitHub { owner = "EasyRPG"; repo = "liblcf"; rev = version; - sha256 = "1y3pbl3jxan9f0cb1rxkibqjc0h23jm3jlwlv0xxn2pgw8l0fk34"; + sha256 = "1842hns0rbjncrhwjj7fzg9b3n47adn5jp4dg2zz34gfah3q4ig8"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; - buildInputs = [ expat icu ]; + propagatedBuildInputs = [ expat icu ]; meta = with stdenv.lib; { + description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects"; homepage = https://github.com/EasyRPG/liblcf; license = licenses.mit; maintainers = with maintainers; [ yegortimoshenko ]; From 83a3cf0166118e6f71f74fbb7d229ce515c7db47 Mon Sep 17 00:00:00 2001 From: c0bw3b Date: Thu, 15 Nov 2018 22:36:07 +0100 Subject: [PATCH 2/2] easyrpg-player: 0.5.3 -> 0.5.4 --- pkgs/games/easyrpg-player/default.nix | 25 ++++++++++++++++++------- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/pkgs/games/easyrpg-player/default.nix b/pkgs/games/easyrpg-player/default.nix index be45866a7dd7..75763907425b 100644 --- a/pkgs/games/easyrpg-player/default.nix +++ b/pkgs/games/easyrpg-player/default.nix @@ -1,31 +1,41 @@ -{ stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, harfbuzz ? null -, liblcf, libpng, libsndfile ? null, libxmp ? null, libvorbis ? null, mpg123 ? null -, opusfile ? null, pixman, SDL2, speexdsp ? null, wildmidi ? null, zlib }: +{ stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, glib, harfbuzz ? null +, liblcf, libpng, libsndfile ? null, libvorbis ? null, libxmp ? null +, libXcursor, libXext, libXi, libXinerama, libXrandr, libXScrnSaver, libXxf86vm +, mpg123 ? null, opusfile ? null, pcre, pixman, SDL2_mixer, speexdsp ? null, wildmidi ? null, zlib }: stdenv.mkDerivation rec { name = "easyrpg-player-${version}"; - version = "0.5.3"; + version = "0.5.4"; src = fetchFromGitHub { owner = "EasyRPG"; repo = "Player"; rev = version; - sha256 = "1cn3g08ap6cf812s8p3ilf31q7y7y4knp1s0gk45mqcz215cpd8q"; + sha256 = "1k1b5ws48h1ylarbcfsxyvajl0fdzmi3db8y3m8iq4fg3f0yslg8"; }; nativeBuildInputs = [ cmake doxygen pkgconfig ]; buildInputs = [ freetype + glib harfbuzz liblcf libpng libsndfile - libxmp libvorbis + libxmp + libXcursor + libXext + libXi + libXinerama + libXrandr + libXScrnSaver + libXxf86vm mpg123 opusfile - SDL2 + SDL2_mixer + pcre pixman speexdsp wildmidi @@ -33,6 +43,7 @@ stdenv.mkDerivation rec { ]; meta = with stdenv.lib; { + description = "RPG Maker 2000/2003 and EasyRPG games interpreter"; homepage = https://easyrpg.org/; license = licenses.gpl3; maintainers = with maintainers; [ yegortimoshenko ];