Sergei Trofimovich 9c3faa2d1b hheretic: add missing libGL and libGLU depends
Without the change the build fails as https://hydra.nixos.org/build/294989234:

    checking for OpenGL support... no
    configure: error: *** OpenGL not found!

ZHF: #403336
2025-05-01 22:25:18 +01:00

63 lines
1.1 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
SDL,
SDL_mixer,
libGL,
libGLU,
autoreconfHook,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "hheretic";
version = "0.2.4";
src = fetchFromGitHub {
owner = "sezero";
repo = "hheretic";
rev = "hheretic-${finalAttrs.version}";
hash = "sha256-49eQeh0suU+7QLB25cvrqirZRaBgZp438H6NW0pWsPI=";
};
nativeBuildInputs = [
autoreconfHook
(lib.getDev SDL)
];
buildInputs = [
SDL
SDL_mixer
libGL
libGLU
];
strictDeps = true;
enableParallelBuilding = true;
configureFlags = [ "--with-audio=sdlmixer" ];
installPhase = ''
runHook preInstall
install -Dm755 hheretic-gl -t $out/bin
runHook postInstall
'';
passthru.updateScript = gitUpdater {
rev-prefix = "hheretic-";
};
meta = {
description = "Linux port of Raven Game's Heretic";
homepage = "https://hhexen.sourceforge.net/hhexen.html";
license = lib.licenses.gpl2Plus;
mainProgram = "hheretic-gl";
maintainers = with lib.maintainers; [ moody ];
inherit (SDL.meta) platforms;
broken = stdenv.hostPlatform.isDarwin;
};
})