Merge pull request #50429 from c0bw3b/pkg/easyrpg
{easyrpg-player,liblcf}: 0.5.3 -> 0.5.4
This commit is contained in:
commit
d554f80b78
@ -2,19 +2,20 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "liblcf-${version}";
|
name = "liblcf-${version}";
|
||||||
version = "0.5.3";
|
version = "0.5.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "EasyRPG";
|
owner = "EasyRPG";
|
||||||
repo = "liblcf";
|
repo = "liblcf";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1y3pbl3jxan9f0cb1rxkibqjc0h23jm3jlwlv0xxn2pgw8l0fk34";
|
sha256 = "1842hns0rbjncrhwjj7fzg9b3n47adn5jp4dg2zz34gfah3q4ig8";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
buildInputs = [ expat icu ];
|
propagatedBuildInputs = [ expat icu ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
description = "Library to handle RPG Maker 2000/2003 and EasyRPG projects";
|
||||||
homepage = https://github.com/EasyRPG/liblcf;
|
homepage = https://github.com/EasyRPG/liblcf;
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ yegortimoshenko ];
|
maintainers = with maintainers; [ yegortimoshenko ];
|
||||||
|
@ -1,31 +1,41 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, harfbuzz ? null
|
{ stdenv, fetchFromGitHub, cmake, doxygen ? null, pkgconfig, freetype ? null, glib, harfbuzz ? null
|
||||||
, liblcf, libpng, libsndfile ? null, libxmp ? null, libvorbis ? null, mpg123 ? null
|
, liblcf, libpng, libsndfile ? null, libvorbis ? null, libxmp ? null
|
||||||
, opusfile ? null, pixman, SDL2, speexdsp ? null, wildmidi ? null, zlib }:
|
, libXcursor, libXext, libXi, libXinerama, libXrandr, libXScrnSaver, libXxf86vm
|
||||||
|
, mpg123 ? null, opusfile ? null, pcre, pixman, SDL2_mixer, speexdsp ? null, wildmidi ? null, zlib }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "easyrpg-player-${version}";
|
name = "easyrpg-player-${version}";
|
||||||
version = "0.5.3";
|
version = "0.5.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "EasyRPG";
|
owner = "EasyRPG";
|
||||||
repo = "Player";
|
repo = "Player";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1cn3g08ap6cf812s8p3ilf31q7y7y4knp1s0gk45mqcz215cpd8q";
|
sha256 = "1k1b5ws48h1ylarbcfsxyvajl0fdzmi3db8y3m8iq4fg3f0yslg8";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake doxygen pkgconfig ];
|
nativeBuildInputs = [ cmake doxygen pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
freetype
|
freetype
|
||||||
|
glib
|
||||||
harfbuzz
|
harfbuzz
|
||||||
liblcf
|
liblcf
|
||||||
libpng
|
libpng
|
||||||
libsndfile
|
libsndfile
|
||||||
libxmp
|
|
||||||
libvorbis
|
libvorbis
|
||||||
|
libxmp
|
||||||
|
libXcursor
|
||||||
|
libXext
|
||||||
|
libXi
|
||||||
|
libXinerama
|
||||||
|
libXrandr
|
||||||
|
libXScrnSaver
|
||||||
|
libXxf86vm
|
||||||
mpg123
|
mpg123
|
||||||
opusfile
|
opusfile
|
||||||
SDL2
|
SDL2_mixer
|
||||||
|
pcre
|
||||||
pixman
|
pixman
|
||||||
speexdsp
|
speexdsp
|
||||||
wildmidi
|
wildmidi
|
||||||
@ -33,6 +43,7 @@ stdenv.mkDerivation rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
description = "RPG Maker 2000/2003 and EasyRPG games interpreter";
|
||||||
homepage = https://easyrpg.org/;
|
homepage = https://easyrpg.org/;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ yegortimoshenko ];
|
maintainers = with maintainers; [ yegortimoshenko ];
|
||||||
|
Loading…
Reference in New Issue
Block a user