From d2a793d861d7a5c3f70a2f0abd7507ecf680b24e Mon Sep 17 00:00:00 2001 From: Grimmauld Date: Tue, 18 Mar 2025 11:26:05 +0100 Subject: [PATCH] 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 --- pkgs/by-name/hh/hhexen/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/hh/hhexen/package.nix b/pkgs/by-name/hh/hhexen/package.nix index 4d994f4721280..4223e1f722d1b 100644 --- a/pkgs/by-name/hh/hhexen/package.nix +++ b/pkgs/by-name/hh/hhexen/package.nix @@ -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 ];