nixpkgs/pkgs/games/quake3/ioquake/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

2019-06-03 15:38:23 +00:00
{ stdenv, fetchFromGitHub, which, pkgconfig, SDL2, libGL, openalSoft
2018-02-25 17:15:27 +00:00
, curl, speex, opusfile, libogg, libvorbis, libopus, libjpeg, mumble, freetype
}:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "ioquake3-git";
2019-06-03 15:38:23 +00:00
version = "2019-05-29";
2016-03-03 12:13:26 +00:00
src = fetchFromGitHub {
owner = "ioquake";
repo = "ioq3";
2019-06-03 15:38:23 +00:00
rev = "350b8f9c7c88c002dccea4f0350f1919b86d3b4e";
2018-12-23 18:32:26 +00:00
sha256 = "17qkqi22f2fyh6bnfcf1zz2lycgv08d6aw52sf0hqw7r3qq86d08";
};
2016-03-20 12:17:50 +00:00
nativeBuildInputs = [ which pkgconfig ];
2018-02-25 17:15:27 +00:00
buildInputs = [
2019-06-03 15:38:23 +00:00
SDL2 libGL 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;
2018-12-23 18:32:26 +00:00
maintainers = with maintainers; [ rvolosatovs eelco abbradar ];
};
}