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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

136 lines
2.4 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, fetchpatch
, cmake
, doxygen
, pkg-config
, freetype
, fmt
, glib
, harfbuzz
, liblcf
, libpng
, libsndfile
, libvorbis
, libxmp
, libXcursor
, libXext
, libXi
, libXinerama
, libXrandr
, libXScrnSaver
, libXxf86vm
, mpg123
, opusfile
, pcre
, pixman
, SDL2
, speexdsp
, wildmidi
, zlib
2022-05-20 09:09:01 +00:00
, libdecor
, alsa-lib
, asciidoctor
, Foundation
, AudioUnit
, AudioToolbox
}:
2017-12-25 02:28:19 +00:00
stdenv.mkDerivation rec {
pname = "easyrpg-player";
version = "0.8";
2017-12-25 02:28:19 +00:00
src = fetchFromGitHub {
owner = "EasyRPG";
repo = "Player";
rev = version;
hash = "sha256-t0sa9ONVVfsiTy+us06vU2bMa4QmmQeYxU395g0WS6w=";
2017-12-25 02:28:19 +00:00
};
patches = [
# Fixed compatibility with fmt > 9
# Remove when version > 0.8
(fetchpatch {
name = "0001-Fix-building-with-fmtlib-10.patch";
url = "https://github.com/EasyRPG/Player/commit/ab6286f6d01bada649ea52d1f0881dde7db7e0cf.patch";
hash = "sha256-GdSdVFEG1OJCdf2ZIzTP+hSrz+ddhTMBvOPjvYQHy54=";
})
];
strictDeps = true;
nativeBuildInputs = [
asciidoctor
cmake
doxygen
pkg-config
];
2017-12-25 02:28:19 +00:00
buildInputs = [
fmt
2017-12-25 02:28:19 +00:00
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
2017-12-25 02:28:19 +00:00
mpg123
opusfile
2018-11-15 21:36:07 +00:00
pcre
2017-12-25 02:28:19 +00:00
pixman
SDL2
2017-12-25 02:28:19 +00:00
speexdsp
zlib
] ++ lib.optionals stdenv.hostPlatform.isLinux [
alsa-lib
libXcursor
libXext
libXi
libXinerama
libXrandr
libXScrnSaver
libXxf86vm
2022-05-20 09:09:01 +00:00
libdecor
wildmidi # until packaged on Darwin
] ++ lib.optionals stdenv.hostPlatform.isDarwin [
Foundation
AudioUnit
AudioToolbox
2017-12-25 02:28:19 +00:00
];
cmakeFlags = [
"-DPLAYER_ENABLE_TESTS=${lib.boolToString doCheck}"
];
makeFlags = [
"all"
"man"
];
buildFlags = lib.optionals doCheck [
"test_runner_player"
];
postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
mkdir $out/bin
mv Package $out/Applications
ln -s $out/{Applications/EasyRPG\ Player.app/Contents/MacOS,bin}/EasyRPG\ Player
'';
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
enableParallelChecking = true;
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;
2021-12-31 18:48:55 +00:00
maintainers = with maintainers; [ yana ];
platforms = platforms.all;
mainProgram = lib.optionalString stdenv.hostPlatform.isDarwin "EasyRPG Player";
2017-12-25 02:28:19 +00:00
};
}