hhexen: fix build

commit 7aeac03 (PR #386495) dropped libX11 and libGLU from propagatedBuildInputs in SDL_compat, and #389106 pointed SDL to SDL_compat, which broke this build

Hydra failure: https://hydra.nixos.org/build/292732591
This commit is contained in:
Grimmauld 2025-03-18 11:26:05 +01:00
parent 2341cd6a3a
commit d2a793d861
No known key found for this signature in database

View File

@ -2,6 +2,8 @@
lib,
stdenv,
fetchFromGitHub,
libGL,
libGLU,
SDL,
SDL_mixer,
autoreconfHook,
@ -25,6 +27,8 @@ stdenv.mkDerivation (finalAttrs: {
];
buildInputs = [
libGL
libGLU
SDL
SDL_mixer
];