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