9 stdenv.mkDerivation rec {
11 version = "unstable-2022-05-10";
13 src = fetchFromGitHub {
14 owner = "DarkPlacesEngine";
16 rev = "f16954a9d40168253ac5d9890dabcf7dbd266cd9";
17 hash = "sha256-5KsUcgHbuzFUE6LcclqI8VPSFbXZzBnxzOBB9Kf8krI=";
26 buildFlags = [ "release" ];
32 install -m755 darkplaces-sdl $out/bin/darkplaces
33 install -m755 darkplaces-dedicated $out/bin/darkplaces-dedicated
40 --add-needed ${libvorbis}/lib/libvorbisfile.so \
41 --add-needed ${libvorbis}/lib/libvorbis.so \
46 homepage = "https://www.icculus.org/twilight/darkplaces/";
47 description = "A quake 1 engine implementation by LadyHavoc";
49 A game engine based on the Quake 1 engine by id Software.
50 It improves and builds upon the original 1996 engine by adding modern
51 rendering features, and expanding upon the engine's native game code
52 language QuakeC, as well as supporting additional map and model formats.
54 maintainers = with maintainers; [ necrophcodr ];
55 license = licenses.gpl2Plus;
56 platforms = platforms.linux;