From 9c3faa2d1b2a4d26bcfc1a19429331867a09cfbc Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Thu, 1 May 2025 22:25:18 +0100 Subject: [PATCH] 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 --- pkgs/by-name/hh/hheretic/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/hh/hheretic/package.nix b/pkgs/by-name/hh/hheretic/package.nix index 64a3fa9d82ac..2b886b6b8522 100644 --- a/pkgs/by-name/hh/hheretic/package.nix +++ b/pkgs/by-name/hh/hheretic/package.nix @@ -4,6 +4,8 @@ fetchFromGitHub, SDL, SDL_mixer, + libGL, + libGLU, autoreconfHook, gitUpdater, }: @@ -27,6 +29,8 @@ stdenv.mkDerivation (finalAttrs: { buildInputs = [ SDL SDL_mixer + libGL + libGLU ]; strictDeps = true;