ezquake: init at 3.0.1
This commit is contained in:
parent
4ef8313bb6
commit
0f9a2285b8
37
pkgs/games/ezquake/default.nix
Normal file
37
pkgs/games/ezquake/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -6719,6 +6719,8 @@ with pkgs;
|
|||||||
|
|
||||||
eztrace = callPackage ../development/tools/profiling/EZTrace { };
|
eztrace = callPackage ../development/tools/profiling/EZTrace { };
|
||||||
|
|
||||||
|
ezquake = callPackage ../games/ezquake { };
|
||||||
|
|
||||||
findbugs = callPackage ../development/tools/analysis/findbugs { };
|
findbugs = callPackage ../development/tools/analysis/findbugs { };
|
||||||
|
|
||||||
foreman = callPackage ../tools/system/foreman { };
|
foreman = callPackage ../tools/system/foreman { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user