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