2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which
|
2019-01-02 10:47:16 +00:00
|
|
|
, boost, SDL2, SDL2_image, SDL2_mixer, SDL2_ttf
|
2021-01-17 05:49:22 +00:00
|
|
|
, glew, zlib, icu, pkg-config, cairo, libvpx }:
|
2019-01-02 10:47:16 +00:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-01-02 10:47:16 +00:00
|
|
|
pname = "anura-engine";
|
2021-05-30 20:22:02 +01:00
|
|
|
version = "unstable-2021-05-24";
|
2019-01-02 10:47:16 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "anura-engine";
|
|
|
|
repo = "anura";
|
2021-05-30 20:22:02 +01:00
|
|
|
rev = "ed50bbfa68a4aa09438d95d39103ec39156d438f";
|
|
|
|
sha256 = "0bk0qklk9wwx3jr2kbrmansccn1nj962v5n2vlb5hxsrcv96s3dg";
|
2019-01-02 10:47:16 +00:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2021-05-30 20:22:02 +01:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/sys.cpp \
|
|
|
|
--replace mallinfo2 mallinfo
|
|
|
|
'';
|
|
|
|
|
2019-01-02 10:47:16 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 05:49:22 +00:00
|
|
|
which pkg-config
|
2019-01-02 10:47:16 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
boost
|
|
|
|
SDL2
|
|
|
|
SDL2_image
|
|
|
|
SDL2_mixer
|
|
|
|
SDL2_ttf
|
|
|
|
glew
|
|
|
|
zlib
|
|
|
|
icu
|
|
|
|
cairo
|
|
|
|
libvpx
|
|
|
|
];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin $out/share/frogatto
|
|
|
|
cp -ar data images modules $out/share/frogatto/
|
|
|
|
cp -a anura $out/bin/frogatto
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/anura-engine/anura";
|
2019-01-02 10:47:16 +00:00
|
|
|
description = "Game engine used by Frogatto";
|
|
|
|
license = licenses.zlib;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ astro ];
|
|
|
|
};
|
|
|
|
}
|