nixpkgs/pkgs/games/dhewm3/default.nix

39 lines
966 B
Nix
Raw Normal View History

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