2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchgit, cmake, sfml, libGLU, libGL, bullet, glm, libmad, xlibsWrapper, openal
|
2020-06-07 14:39:09 +02:00
|
|
|
, SDL2, boost, ffmpeg_3, Cocoa, OpenAL }:
|
2016-05-29 01:53:56 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-10-26 19:40:53 +02:00
|
|
|
version = "2019-10-26";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "openrw";
|
2017-09-28 18:47:39 +02:00
|
|
|
|
2016-05-29 01:53:56 +02:00
|
|
|
src = fetchgit {
|
|
|
|
url = "https://github.com/rwengine/openrw";
|
2019-10-26 19:40:53 +02:00
|
|
|
rev = "51b7264744d1aaa20de3b86a7a4e92a9930881ba";
|
|
|
|
sha256 = "04s088wfxkfmb4dxdvad611yxj8smxlnxdm5xy81zldfzybvx8dg";
|
2016-05-29 01:53:56 +02:00
|
|
|
fetchSubmodules = true;
|
|
|
|
};
|
|
|
|
|
2019-10-29 17:59:06 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2017-09-28 18:47:39 +02:00
|
|
|
buildInputs = [
|
2020-06-07 14:39:09 +02:00
|
|
|
sfml libGLU libGL bullet glm libmad xlibsWrapper openal SDL2 boost ffmpeg_3
|
2021-01-15 05:31:39 +01:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [ OpenAL Cocoa ];
|
2016-05-29 01:53:56 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-05-29 01:53:56 +02:00
|
|
|
description = "Unofficial open source recreation of the classic Grand Theft Auto III game executable";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/rwengine/openrw";
|
2016-05-29 01:53:56 +02:00
|
|
|
license = licenses.gpl3;
|
|
|
|
longDescription = ''
|
|
|
|
OpenRW is an open source re-implementation of Rockstar Games' Grand Theft
|
|
|
|
Auto III, a classic 3D action game first published in 2001.
|
|
|
|
'';
|
|
|
|
maintainers = with maintainers; [ kragniz ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|