summary refs log tree commit diff
path: root/pkgs/games/easyrpg-player/default.nix
blob: be45866a7dd7f59e14bf2fc38dcd24c00b1455ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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;
  };
}