11 stdenv.mkDerivation (finalAttrs: {
15 src = fetchFromGitHub {
18 rev = "hheretic-${finalAttrs.version}";
19 hash = "sha256-e9N869W8STZdLUBSscxEnF2Z+SrdVv8ARDL8AMe1SJ8=";
33 enableParallelBuilding = true;
35 configureFlags = [ "--with-audio=sdlmixer" ];
40 install -Dm755 hheretic-gl -t $out/bin
45 passthru.updateScript = gitUpdater {
46 rev-prefix = "hheretic-";
50 description = "Linux port of Raven Game's Heretic";
51 homepage = "https://hhexen.sourceforge.net/hhexen.html";
52 license = lib.licenses.gpl2Plus;
53 mainProgram = "hheretic-gl";
54 maintainers = with lib.maintainers; [ moody ];
55 inherit (SDL.meta) platforms;
56 broken = stdenv.hostPlatform.isDarwin;