nixpkgs/pkgs/games/quake2/yquake2/default.nix

94 lines
2.6 KiB
Nix
Raw Permalink Normal View History

2018-04-11 18:37:40 +00:00
{ stdenv, lib, fetchFromGitHub, buildEnv, cmake, makeWrapper
2020-05-31 07:54:45 +00:00
, SDL2, libGL, curl
2018-04-11 18:37:40 +00:00
, oggSupport ? true, libogg, libvorbis
, openalSupport ? true, openal
, zipSupport ? true, zlib
2019-04-23 02:53:17 +00:00
, Cocoa, OpenAL
2018-04-11 18:37:40 +00:00
}:
let
mkFlag = b: if b then "ON" else "OFF";
games = import ./games.nix { inherit stdenv lib fetchFromGitHub cmake; };
wrapper = import ./wrapper.nix { inherit stdenv lib buildEnv makeWrapper yquake2; };
yquake2 = stdenv.mkDerivation rec {
pname = "yquake2";
2020-05-31 07:54:45 +00:00
version = "7.43";
2018-04-11 18:37:40 +00:00
src = fetchFromGitHub {
owner = "yquake2";
repo = "yquake2";
rev = "QUAKE2_${builtins.replaceStrings ["."] ["_"] version}";
2020-05-31 07:54:45 +00:00
sha256 = "1dszbvxlh1npq4nv9s4wv4lcyfgb01k92ncxrrczsxy1dddg86pp";
2018-04-11 18:37:40 +00:00
};
nativeBuildInputs = [ cmake ];
2020-05-31 07:54:45 +00:00
buildInputs = [ SDL2 libGL curl ]
2019-04-23 02:53:17 +00:00
++ lib.optionals stdenv.isDarwin [ Cocoa OpenAL ]
2018-04-11 18:37:40 +00:00
++ lib.optionals oggSupport [ libogg libvorbis ]
++ lib.optional openalSupport openal
++ lib.optional zipSupport zlib;
cmakeFlags = [
"-DCMAKE_BUILD_TYPE=Release"
"-DOGG_SUPPORT=${mkFlag oggSupport}"
"-DOPENAL_SUPPORT=${mkFlag openalSupport}"
"-DZIP_SUPPORT=${mkFlag zipSupport}"
"-DSYSTEMWIDE_SUPPORT=ON"
];
preConfigure = ''
# Since we can't expand $out in `cmakeFlags`
cmakeFlags="$cmakeFlags -DSYSTEMDIR=$out/share/games/quake2"
'';
installPhase = ''
# Yamagi Quake II expects all binaries (executables and libs) to be in the
# same directory.
mkdir -p $out/bin $out/lib/yquake2 $out/share/games/quake2
cp -r release/* $out/lib/yquake2
ln -s $out/lib/yquake2/quake2 $out/bin/yquake2
ln -s $out/lib/yquake2/q2ded $out/bin/yq2ded
cp $src/stuff/yq2.cfg $out/share/games/quake2
'';
meta = with lib; {
2018-04-11 18:37:40 +00:00
description = "Yamagi Quake II client";
homepage = "https://www.yamagi.org/quake2/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ tadfisher ];
};
};
2019-08-13 21:52:01 +00:00
in {
2018-04-11 18:37:40 +00:00
inherit yquake2;
yquake2-ctf = wrapper {
games = [ games.ctf ];
name = "yquake2-ctf";
inherit (games.ctf) description;
};
yquake2-ground-zero = wrapper {
games = [ games.ground-zero ];
name = "yquake2-ground-zero";
inherit (games.ground-zero) description;
};
yquake2-the-reckoning = wrapper {
games = [ games.the-reckoning ];
name = "yquake2-the-reckoning";
inherit (games.the-reckoning) description;
};
yquake2-all-games = wrapper {
games = lib.attrValues games;
name = "yquake2-all-games";
description = "Yamagi Quake II with all add-on games";
};
}