nixpkgs/pkgs/games/ezquake/default.nix
John Ericson 2c2f1e37d4 reewide: Purge all uses stdenv.system and top-level system
It is deprecated and will be removed after 18.09.
2018-08-30 17:20:32 -04:00

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 ];
};
}