Merge pull request #96935 from rvolosatovs/update/ioquake3

ioquake3: 2019-05-29 -> 2020-08-29
This commit is contained in:
Sandro 2021-01-10 13:59:19 +01:00 committed by GitHub
commit 2cfa110ae8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,19 +1,19 @@
{ stdenv, fetchFromGitHub, which, pkgconfig, SDL2, libGL, openalSoft { stdenv, fetchFromGitHub, which, pkg-config, SDL2, libGL, openalSoft
, curl, speex, opusfile, libogg, libvorbis, libopus, libjpeg, mumble, freetype , curl, speex, opusfile, libogg, libvorbis, libopus, libjpeg, mumble, freetype
}: }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "ioquake3-git"; pname = "ioquake3-git";
version = "2019-05-29"; version = "2020-12-26";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ioquake"; owner = "ioquake";
repo = "ioq3"; repo = "ioq3";
rev = "350b8f9c7c88c002dccea4f0350f1919b86d3b4e"; rev = "05180e32dcfb9a4552e1b9652b56127248a9950c";
sha256 = "17qkqi22f2fyh6bnfcf1zz2lycgv08d6aw52sf0hqw7r3qq86d08"; sha256 = "0hcxxa1ambpdwhg7nb5hvb32g49rl5p9dcflpzcv5cax9drn166i";
}; };
nativeBuildInputs = [ which pkgconfig ]; nativeBuildInputs = [ which pkg-config ];
buildInputs = [ buildInputs = [
SDL2 libGL openalSoft curl speex opusfile libogg libvorbis libopus libjpeg SDL2 libGL openalSoft curl speex opusfile libogg libvorbis libopus libjpeg
freetype mumble freetype mumble
@ -34,7 +34,7 @@ stdenv.mkDerivation {
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://ioquake3.org/"; homepage = "https://ioquake3.org/";
description = "First person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena"; description = "First person shooter engine based on the Quake 3: Arena and Quake 3: Team Arena";
license = licenses.gpl2; license = licenses.gpl2Only;
platforms = platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ rvolosatovs eelco abbradar ]; maintainers = with maintainers; [ rvolosatovs eelco abbradar ];
}; };