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