ezquake: 3.0.1 -> 3.1

This commit is contained in:
Marek Mahut 2020-02-12 18:36:31 +01:00
parent 91801c0b45
commit e0efe0d77f

View file

@ -1,21 +1,21 @@
{ stdenv, fetchFromGitHub, curl, expat
, jansson, libpng, libjpeg, libGLU, libGL, libXxf86vm, pcre
, pkgconfig, SDL2, vim }:
, pkgconfig, SDL2, vim, speex }:
stdenv.mkDerivation rec {
pname = "ezquake";
version = "3.0.1";
version = "3.1";
src = fetchFromGitHub {
owner = "ezQuake";
repo = pname + "-source";
rev = "v" + version;
sha256 = "14wck0r64z5haacp7g7qb2qrbhff3x6jfjmn4268dyb9dl5663f2";
rev = version;
sha256 = "0375jndynhkl59m80fhmq12v5g24zy16c7ly08h004cmjzqsikn4";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
expat curl jansson libpng libjpeg libGLU libGL libXxf86vm pcre SDL2 vim
expat curl jansson libpng libjpeg libGLU libGL libXxf86vm pcre SDL2 vim speex
];
installPhase = with stdenv.lib; let
@ -30,8 +30,8 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://ezquake.github.io/;
description = "A modern QuakeWorld client focused on competitive online play.";
homepage = "http://ezquake.github.io/";
description = "A modern QuakeWorld client focused on competitive online play";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ edwtjo ];