Skip to content

Commit

Permalink
ezquake: init at 3.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
edwtjo committed Jun 15, 2017
1 parent 4ef8313 commit 0f9a228
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/games/ezquake/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 0f9a228

Please sign in to comment.