mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
2c2f1e37d4
It is deprecated and will be removed after 18.09.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchFromGitHub, curl, expat
|
|
, jansson, libpng, libjpeg, libGLU_combined, libXxf86vm, pcre
|
|
, pkgconfig, SDL2, vim }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = pname + "-" + version;
|
|
pname = "ezquake";
|
|
version = "3.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ezQuake";
|
|
repo = pname + "-source";
|
|
rev = "v" + version;
|
|
sha256 = "14wck0r64z5haacp7g7qb2qrbhff3x6jfjmn4268dyb9dl5663f2";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
expat curl jansson libpng libjpeg libGLU_combined libXxf86vm pcre SDL2 vim
|
|
];
|
|
|
|
installPhase = with stdenv.lib; let
|
|
sys = last (splitString "-" stdenv.hostPlatform.system);
|
|
arch = head (splitString "-" stdenv.hostPlatform.system);
|
|
in ''
|
|
mkdir -p $out/bin
|
|
find .
|
|
mv ezquake-${sys}-${arch} $out/bin/ezquake
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|