nixpkgs/pkgs/games/ezquake/default.nix

40 lines
1 KiB
Nix
Raw Normal View History

2017-06-15 06:37:24 +00:00
{ stdenv, fetchFromGitHub, curl, expat
2019-11-10 16:44:34 +00:00
, jansson, libpng, libjpeg, libGLU, libGL, libXxf86vm, pcre
, pkgconfig, SDL2, vim }:
2017-06-15 06:37:24 +00:00
stdenv.mkDerivation rec {
pname = "ezquake";
version = "3.0.1";
src = fetchFromGitHub {
owner = "ezQuake";
repo = pname + "-source";
rev = "v" + version;
sha256 = "14wck0r64z5haacp7g7qb2qrbhff3x6jfjmn4268dyb9dl5663f2";
};
nativeBuildInputs = [ pkgconfig ];
2017-06-15 06:37:24 +00:00
buildInputs = [
2019-11-10 16:44:34 +00:00
expat curl jansson libpng libjpeg libGLU libGL libXxf86vm pcre SDL2 vim
2017-06-15 06:37:24 +00:00
];
installPhase = with stdenv.lib; let
sys = last (splitString "-" stdenv.hostPlatform.system);
arch = head (splitString "-" stdenv.hostPlatform.system);
2017-06-15 06:37:24 +00:00
in ''
mkdir -p $out/bin
find .
mv ezquake-${sys}-${arch} $out/bin/ezquake
'';
2018-07-03 12:44:18 +00:00
enableParallelBuilding = true;
2017-06-15 06:37:24 +00:00
meta = with stdenv.lib; {
homepage = http://ezquake.github.io/;
2017-06-15 06:37:24 +00:00
description = "A modern QuakeWorld client focused on competitive online play.";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ edwtjo ];
};
}