2014-11-11 01:38:48 -08:00
|
|
|
{ lib, stdenv, fetchurl, x11, SDL, mesa, openal, gcc46 }:
|
2006-01-26 06:43:05 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-01-10 04:24:48 -08:00
|
|
|
name = "ioquake3-1.36";
|
2014-11-04 05:27:51 -08:00
|
|
|
|
2006-01-26 07:31:37 -08:00
|
|
|
src = fetchurl {
|
2011-01-10 04:24:48 -08:00
|
|
|
url = http://ioquake3.org/files/1.36/ioquake3-1.36.tar.bz2; # calls itself "1.34-rc3"
|
2008-06-14 13:55:48 -07:00
|
|
|
sha256 = "008vah60z0n9h1qp373xbqvhwfbyywbbhd1np0h0yw66g0qzchzv";
|
2006-01-26 10:50:25 -08:00
|
|
|
};
|
2008-06-14 13:55:48 -07:00
|
|
|
|
|
|
|
patchFlags = "-p0";
|
2014-11-04 05:27:51 -08:00
|
|
|
|
2008-06-14 13:55:48 -07:00
|
|
|
patches = [
|
|
|
|
# Fix for compiling on gcc 4.2.
|
|
|
|
(fetchurl {
|
|
|
|
url = "http://sources.gentoo.org/viewcvs.py/*checkout*/gentoo-x86/games-fps/quake3/files/quake3-1.34_rc3-gcc42.patch?rev=1.1";
|
|
|
|
sha256 = "06c9lxfczcby5q29pim231mr2wdkvbv36xp9zbxp9vk0dfs8rv9x";
|
|
|
|
})
|
2011-01-10 04:24:48 -08:00
|
|
|
|
|
|
|
# Do an exit() instead of _exit(). This is nice for gcov.
|
|
|
|
# Upstream also seems to do this.
|
2014-11-04 05:27:51 -08:00
|
|
|
./exit.patch
|
2015-07-13 15:57:06 -07:00
|
|
|
|
|
|
|
# No bots on amd64 without this patch.
|
|
|
|
./botlib.patch
|
2008-06-14 13:55:48 -07:00
|
|
|
];
|
2014-11-04 05:27:51 -08:00
|
|
|
|
2014-11-11 01:38:48 -08:00
|
|
|
buildInputs = [ x11 SDL mesa openal gcc46 ];
|
2008-06-14 13:55:48 -07:00
|
|
|
|
2012-02-18 08:35:04 -08:00
|
|
|
# Fix building on GCC 4.6.
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
2008-06-14 13:55:48 -07:00
|
|
|
preInstall = ''
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/baseq3
|
2008-06-14 13:55:48 -07:00
|
|
|
installTargets=copyfiles
|
|
|
|
installFlags="COPYDIR=$out"
|
|
|
|
'';
|
2014-08-25 10:00:51 -07:00
|
|
|
|
2014-11-04 05:27:51 -08:00
|
|
|
meta = {
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = [ lib.maintainers.eelco ];
|
|
|
|
};
|
2006-01-26 07:31:37 -08:00
|
|
|
}
|