summary refs log tree commit diff
path: root/pkgs/games/ezquake/default.nix
blob: a1560fb19340b93496e0f76c3fc248dfa4fc6682 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 ];
  };
}