ezquake: init at 3.0.1

This commit is contained in:
Edward Tjörnhammar 2017-06-15 08:37:24 +02:00
parent 4ef8313bb6
commit 0f9a2285b8
No known key found for this signature in database
GPG key ID: 7B82CE4A866B6845
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ stdenv, fetchFromGitHub, curl, expat
, jansson, libpng, libjpeg, mesa, pcre
, pkgconfig, SDL2, vimNox }:
stdenv.mkDerivation rec {
name = pname + "-" + version;
pname = "ezquake";
version = "3.0.1";
src = fetchFromGitHub {
owner = "ezQuake";
repo = pname + "-source";
rev = "v" + version;
sha256 = "14wck0r64z5haacp7g7qb2qrbhff3x6jfjmn4268dyb9dl5663f2";
};
buildInputs = [
expat curl jansson libpng libjpeg mesa pcre pkgconfig SDL2 vimNox
];
installPhase = with stdenv.lib; let
sys = last (splitString "-" stdenv.system);
arch = head (splitString "-" stdenv.system);
in ''
mkdir -p $out/bin
find .
mv ezquake-${sys}-${arch} $out/bin/ezquake
'';
meta = with stdenv.lib; {
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 ];
};
}

View file

@ -6719,6 +6719,8 @@ with pkgs;
eztrace = callPackage ../development/tools/profiling/EZTrace { };
ezquake = callPackage ../games/ezquake { };
findbugs = callPackage ../development/tools/analysis/findbugs { };
foreman = callPackage ../tools/system/foreman { };