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