2019-11-10 16:44:34 +00:00
|
|
|
{ stdenv, fetchFromGitHub, cmake, SDL2, libGLU, libGL, zlib, libjpeg, libogg, libvorbis
|
2015-05-16 03:00:54 +01:00
|
|
|
, openal, curl }:
|
2013-04-01 16:56:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "dhewm3";
|
2018-12-29 19:37:44 +00:00
|
|
|
version = "1.5.0";
|
2017-01-30 07:46:27 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dhewm";
|
|
|
|
repo = "dhewm3";
|
|
|
|
rev = version;
|
2018-12-29 19:37:44 +00:00
|
|
|
sha256 = "0wsabvh1x4g12xmhzs2m2pgri2q9sir1w3m2r7fpy6kzxp32hqdk";
|
2013-04-01 16:56:34 +01:00
|
|
|
};
|
|
|
|
|
2019-11-10 16:44:34 +00:00
|
|
|
# Add libGLU libGL linking
|
2013-04-04 22:06:40 +01:00
|
|
|
patchPhase = ''
|
2017-01-30 07:46:27 +00:00
|
|
|
sed -i 's/\<idlib\()\?\)$/idlib GL\1/' neo/CMakeLists.txt
|
2013-04-04 22:06:40 +01:00
|
|
|
'';
|
|
|
|
|
2017-01-30 07:46:27 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cd "$(ls -d dhewm3-*.src)"/neo
|
2013-04-01 16:56:34 +01:00
|
|
|
'';
|
|
|
|
|
2017-01-30 07:46:27 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2019-11-10 16:44:34 +00:00
|
|
|
buildInputs = [ SDL2 libGLU libGL zlib libjpeg libogg libvorbis openal curl ];
|
2013-04-01 16:56:34 +01:00
|
|
|
|
2017-01-30 07:46:27 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/dhewm/dhewm3";
|
2013-04-01 16:56:34 +01:00
|
|
|
description = "Doom 3 port to SDL";
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3;
|
2017-01-30 07:46:27 +00:00
|
|
|
maintainers = with maintainers; [ MP2E ];
|
|
|
|
platforms = with platforms; linux;
|
2013-04-01 16:56:34 +01:00
|
|
|
};
|
2013-04-04 22:06:40 +01:00
|
|
|
}
|