2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, which, pkg-config, SDL2, libGL, openalSoft
|
2018-02-25 17:15:27 +00:00
|
|
|
, curl, speex, opusfile, libogg, libvorbis, libopus, libjpeg, mumble, freetype
|
2016-01-04 12:23:47 +00:00
|
|
|
}:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "ioquake3-git";
|
2020-12-29 17:28:03 +00:00
|
|
|
version = "2020-12-26";
|
2016-01-04 12:23:47 +00:00
|
|
|
|
2016-03-03 12:13:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ioquake";
|
|
|
|
repo = "ioq3";
|
2020-12-29 17:28:03 +00:00
|
|
|
rev = "05180e32dcfb9a4552e1b9652b56127248a9950c";
|
|
|
|
sha256 = "0hcxxa1ambpdwhg7nb5hvb32g49rl5p9dcflpzcv5cax9drn166i";
|
2016-01-04 12:23:47 +00:00
|
|
|
};
|
|
|
|
|
2020-12-29 17:28:03 +00:00
|
|
|
nativeBuildInputs = [ which pkg-config ];
|
2018-02-25 17:15:27 +00:00
|
|
|
buildInputs = [
|
2019-06-03 16:38:23 +01:00
|
|
|
SDL2 libGL openalSoft curl speex opusfile libogg libvorbis libopus libjpeg
|
2018-02-25 17:15:27 +00:00
|
|
|
freetype mumble
|
|
|
|
];
|
2016-01-04 12:23:47 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://ioquake3.org/";
|
2016-01-04 12:23:47 +00:00
|
|
|
description = "First person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena";
|
2020-12-29 17:28:03 +00:00
|
|
|
license = licenses.gpl2Only;
|
2018-02-25 17:15:27 +00:00
|
|
|
platforms = platforms.linux;
|
2018-12-23 18:32:26 +00:00
|
|
|
maintainers = with maintainers; [ rvolosatovs eelco abbradar ];
|
2016-01-04 12:23:47 +00:00
|
|
|
};
|
|
|
|
}
|