f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, which, pkgconfig, xlibsWrapper, SDL2, mesa, openalSoft
|
|
, curl, speex, opusfile, libogg, libopus, libjpeg, mumble, freetype
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "ioquake3-git-${version}";
|
|
version = "2017-07-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ioquake";
|
|
repo = "ioq3";
|
|
rev = "356ae10ef65d4401958d50f03288dcb22d957c96";
|
|
sha256 = "0dz4zqlb9n3skaicj0vfvq4nr3ig80s8nwj9m87b39wc9wq34c5j";
|
|
};
|
|
|
|
nativeBuildInputs = [ which pkgconfig ];
|
|
buildInputs = [ xlibsWrapper SDL2 mesa openalSoft curl speex opusfile libogg libopus libjpeg 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 = {
|
|
homepage = http://ioquake3.org/;
|
|
description = "First person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena";
|
|
license = lib.licenses.gpl2;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.eelco lib.maintainers.abbradar ];
|
|
};
|
|
}
|