nixpkgs/pkgs/games/ezquake/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, curl, expat
, jansson, libpng, libjpeg, libGLU, libGL
, libsndfile, libXxf86vm, pcre, pkg-config, SDL2
, vim, speex }:
2017-06-15 06:37:24 +00:00
stdenv.mkDerivation rec {
pname = "ezquake";
2023-08-22 12:51:54 +00:00
version = "3.6.3";
2017-06-15 06:37:24 +00:00
src = fetchFromGitHub {
owner = "QW-Group";
2017-06-15 06:37:24 +00:00
repo = pname + "-source";
2020-02-12 17:36:31 +00:00
rev = version;
fetchSubmodules = true;
2023-08-22 12:51:54 +00:00
hash = "sha256-ThrsJfj+eP7Lv2ZSNLO6/b98VHrL6/rhwf2p0qMvTF8=";
2017-06-15 06:37:24 +00:00
};
nativeBuildInputs = [ pkg-config ];
2017-06-15 06:37:24 +00:00
buildInputs = [
expat curl jansson libpng libjpeg libGLU libGL libsndfile libXxf86vm pcre SDL2 vim speex
2017-06-15 06:37:24 +00:00
];
2021-01-15 04:31:39 +00:00
installPhase = with 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;
meta = with lib; {
homepage = "https://ezquake.com/";
2020-02-12 17:36:31 +00:00
description = "A modern QuakeWorld client focused on competitive online play";
mainProgram = "ezquake";
2017-06-15 06:37:24 +00:00
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ edwtjo ];
};
}