2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, SDL2, libGLU, libGL, 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 {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "dhewm3";
|
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
|
|
|
};
|
|
|
|
|
2019-11-10 08:44:34 -08:00
|
|
|
# Add libGLU libGL 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 ];
|
2019-11-10 08:44:34 -08:00
|
|
|
buildInputs = [ SDL2 libGLU libGL zlib libjpeg libogg libvorbis openal curl ];
|
2013-04-01 08:56:34 -07:00
|
|
|
|
2017-01-29 23:46:27 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/dhewm/dhewm3";
|
2013-04-01 08:56:34 -07:00
|
|
|
description = "Doom 3 port to SDL";
|
2021-01-14 20:31:39 -08:00
|
|
|
license = 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
|
|
|
}
|