Commit 9c3faa2d authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

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
parent cfbc694c
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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;