nixpkgs/pkgs/games/easyrpg-player/default.nix

53 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, doxygen ? null, pkg-config, freetype ? null, glib, harfbuzz ? null
2018-11-15 21:36:07 +00:00
, 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 02:28:19 +00:00
stdenv.mkDerivation rec {
pname = "easyrpg-player";
2020-10-24 19:30:46 +00:00
version = "0.6.2.3";
2017-12-25 02:28:19 +00:00
src = fetchFromGitHub {
owner = "EasyRPG";
repo = "Player";
rev = version;
2020-10-24 19:30:46 +00:00
sha256 = "103ywad12dcfjpf97kyx22smilqrw1f20xcfvjjr4mm3walc2mdp";
2017-12-25 02:28:19 +00:00
};
nativeBuildInputs = [ cmake doxygen pkg-config ];
2017-12-25 02:28:19 +00:00
buildInputs = [
freetype
2018-11-15 21:36:07 +00:00
glib
2017-12-25 02:28:19 +00:00
harfbuzz
liblcf
libpng
libsndfile
libvorbis
2018-11-15 21:36:07 +00:00
libxmp
libXcursor
libXext
libXi
libXinerama
libXrandr
libXScrnSaver
libXxf86vm
2017-12-25 02:28:19 +00:00
mpg123
opusfile
2018-11-15 21:36:07 +00:00
SDL2_mixer
pcre
2017-12-25 02:28:19 +00:00
pixman
speexdsp
wildmidi
zlib
];
meta = with lib; {
2018-11-15 21:36:07 +00:00
description = "RPG Maker 2000/2003 and EasyRPG games interpreter";
homepage = "https://easyrpg.org/";
2017-12-25 02:28:19 +00:00
license = licenses.gpl3;
maintainers = with maintainers; [ yegortimoshenko ];
platforms = platforms.linux;
};
}