mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
easyrpg-player: init at 0.5.3
This commit is contained in:
parent
1c58e91a40
commit
46edd63af9
41
pkgs/games/easyrpg-player/default.nix
Normal file
41
pkgs/games/easyrpg-player/default.nix
Normal file
@ -0,0 +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.mkDerivation rec {
|
||||
name = "easyrpg-player-${version}";
|
||||
version = "0.5.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "EasyRPG";
|
||||
repo = "Player";
|
||||
rev = version;
|
||||
sha256 = "1cn3g08ap6cf812s8p3ilf31q7y7y4knp1s0gk45mqcz215cpd8q";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake doxygen pkgconfig ];
|
||||
|
||||
buildInputs = [
|
||||
freetype
|
||||
harfbuzz
|
||||
liblcf
|
||||
libpng
|
||||
libsndfile
|
||||
libxmp
|
||||
libvorbis
|
||||
mpg123
|
||||
opusfile
|
||||
SDL2
|
||||
pixman
|
||||
speexdsp
|
||||
wildmidi
|
||||
zlib
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://easyrpg.org/;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ yegortimoshenko ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -18008,6 +18008,8 @@ with pkgs;
|
||||
|
||||
d2x_rebirth = callPackage ../games/d2x-rebirth { };
|
||||
|
||||
easyrpg-player = callPackage ../games/easyrpg-player { };
|
||||
|
||||
eboard = callPackage ../games/eboard { };
|
||||
|
||||
eduke32 = callPackage ../games/eduke32 { };
|
||||
|
Loading…
Reference in New Issue
Block a user