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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, which
, pkg-config
, SDL2
, libGL
, openalSoft
, curl
, speex
, opusfile
, libogg
, libvorbis
, libopus
, libjpeg
, mumble
, freetype
}:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "ioquake3";
version = "unstable-2021-07-20";
2016-03-03 12:13:26 +00:00
src = fetchFromGitHub {
owner = "ioquake";
repo = "ioq3";
2021-08-10 23:01:07 +01:00
rev = "bc8737d707595aebd7cc11d6d5a5d65ede750f59";
sha256 = "1icrkaw6c5c5ndy886bn65lycwnxzxwvz0ndz4p9i6r716k11add";
};
2020-12-29 17:28:03 +00:00
nativeBuildInputs = [ which pkg-config ];
2018-02-25 17:15:27 +00:00
buildInputs = [
SDL2
libGL
openalSoft
curl
speex
opusfile
libogg
libvorbis
libopus
libjpeg
freetype
mumble
2018-02-25 17:15:27 +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
'';
meta = with lib; {
homepage = "https://ioquake3.org/";
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 ];
};
}