2018-11-16 00:36:07 +03:00
|
|
|
{ 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 }:
|
2017-12-25 05:28:19 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 15:41:18 +03:00
|
|
|
pname = "easyrpg-player";
|
2019-08-19 10:18:34 +03:00
|
|
|
version = "0.6.1";
|
2017-12-25 05:28:19 +03:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "EasyRPG";
|
|
|
|
repo = "Player";
|
|
|
|
rev = version;
|
2019-08-19 10:18:34 +03:00
|
|
|
sha256 = "0w4a4jg3py0phsp99nl7abyd31salnc57w4l05a228imvyy0maia";
|
2017-12-25 05:28:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake doxygen pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
freetype
|
2018-11-16 00:36:07 +03:00
|
|
|
glib
|
2017-12-25 05:28:19 +03:00
|
|
|
harfbuzz
|
|
|
|
liblcf
|
|
|
|
libpng
|
|
|
|
libsndfile
|
|
|
|
libvorbis
|
2018-11-16 00:36:07 +03:00
|
|
|
libxmp
|
|
|
|
libXcursor
|
|
|
|
libXext
|
|
|
|
libXi
|
|
|
|
libXinerama
|
|
|
|
libXrandr
|
|
|
|
libXScrnSaver
|
|
|
|
libXxf86vm
|
2017-12-25 05:28:19 +03:00
|
|
|
mpg123
|
|
|
|
opusfile
|
2018-11-16 00:36:07 +03:00
|
|
|
SDL2_mixer
|
|
|
|
pcre
|
2017-12-25 05:28:19 +03:00
|
|
|
pixman
|
|
|
|
speexdsp
|
|
|
|
wildmidi
|
|
|
|
zlib
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-11-16 00:36:07 +03:00
|
|
|
description = "RPG Maker 2000/2003 and EasyRPG games interpreter";
|
2019-05-05 20:29:25 +03:00
|
|
|
homepage = "https://easyrpg.org/";
|
2017-12-25 05:28:19 +03:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ yegortimoshenko ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|