2011-01-10 13:24:48 +01:00
|
|
|
{ stdenv, fetchurl, x11, SDL, mesa, openal }:
|
2006-01-26 15:43:05 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2011-01-10 13:24:48 +01:00
|
|
|
name = "ioquake3-1.36";
|
2008-06-14 22:55:48 +02:00
|
|
|
|
2006-01-26 16:31:37 +01:00
|
|
|
src = fetchurl {
|
2011-01-10 13:24:48 +01:00
|
|
|
url = http://ioquake3.org/files/1.36/ioquake3-1.36.tar.bz2; # calls itself "1.34-rc3"
|
2008-06-14 22:55:48 +02:00
|
|
|
sha256 = "008vah60z0n9h1qp373xbqvhwfbyywbbhd1np0h0yw66g0qzchzv";
|
2006-01-26 19:50:25 +01:00
|
|
|
};
|
2008-06-14 22:55:48 +02:00
|
|
|
|
|
|
|
patchFlags = "-p0";
|
|
|
|
|
|
|
|
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 13:24:48 +01:00
|
|
|
|
|
|
|
# Do an exit() instead of _exit(). This is nice for gcov.
|
|
|
|
# Upstream also seems to do this.
|
|
|
|
./exit.patch
|
2008-06-14 22:55:48 +02:00
|
|
|
];
|
|
|
|
|
2006-01-26 15:43:05 +01:00
|
|
|
buildInputs = [x11 SDL mesa openal];
|
2008-06-14 22:55:48 +02:00
|
|
|
|
2012-02-18 17:35:04 +01:00
|
|
|
# Fix building on GCC 4.6.
|
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error";
|
|
|
|
|
2008-06-14 22:55:48 +02:00
|
|
|
preInstall = ''
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/baseq3
|
2008-06-14 22:55:48 +02:00
|
|
|
installTargets=copyfiles
|
|
|
|
installFlags="COPYDIR=$out"
|
|
|
|
'';
|
|
|
|
|
2006-01-26 16:31:37 +01:00
|
|
|
}
|