3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/games/quake3/ioquake/default.nix

42 lines
1.2 KiB
Nix
Raw Normal View History

2018-03-05 11:49:52 +00:00
{ stdenv, fetchFromGitHub, which, pkgconfig, SDL2, libGLU_combined, openalSoft
2018-02-25 17:15:27 +00:00
, curl, speex, opusfile, libogg, libvorbis, libopus, libjpeg, mumble, freetype
}:
2016-03-03 12:13:26 +00:00
stdenv.mkDerivation rec {
name = "ioquake3-git-${version}";
2018-02-25 17:15:27 +00:00
version = "2018-02-23";
2016-03-03 12:13:26 +00:00
src = fetchFromGitHub {
owner = "ioquake";
repo = "ioq3";
2018-02-25 17:15:27 +00:00
rev = "0d6edd227a13f1447938da1d1b020303c2545eb2";
sha256 = "1nsagyzrai8cxhabcv2my8bbwmwckvri288j6x4qi5bmp78xl4hx";
};
2016-03-20 12:17:50 +00:00
nativeBuildInputs = [ which pkgconfig ];
2018-02-25 17:15:27 +00:00
buildInputs = [
2018-03-05 11:49:52 +00:00
SDL2 libGLU_combined openalSoft curl speex opusfile libogg libvorbis libopus libjpeg
2018-02-25 17:15:27 +00:00
freetype mumble
];
enableParallelBuilding = true;
makeFlags = [ "USE_INTERNAL_LIBS=0" "USE_FREETYPE=1" "USE_OPENAL_DLOPEN=0" "USE_CURL_DLOPEN=0" ];
installTargets = [ "copyfiles" ];
installFlags = [ "COPYDIR=$(out)" ];
preInstall = ''
mkdir -p $out/baseq3
'';
2018-02-25 17:15:27 +00:00
meta = with stdenv.lib; {
homepage = https://ioquake3.org/;
description = "First person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena";
2018-02-25 17:15:27 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ eelco abbradar ];
};
}