1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/games/quake3/ioquake/default.nix

42 lines
1.1 KiB
Nix
Raw Normal View History

{ 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
}:
2019-08-13 22:52:01 +01:00
stdenv.mkDerivation {
pname = "ioquake3-git";
2020-12-29 17:28:03 +00:00
version = "2020-12-26";
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";
};
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
];
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 ];
};
}