nanosaur: add missing libGL depend

Without the change the build fails as
https://hydra.nixos.org/build/294807086:

    CMake Error at /nix/store/ad4c8nx2lkjs4zq0sj9jdpn7w45v9ccs-cmake-3.31.6/share/cmake-3.31/Modules/FindPackageHandleStandardArgs.cmake:233 (message):
      Could NOT find OpenGL (missing: OPENGL_opengl_LIBRARY OPENGL_glx_LIBRARY
      OPENGL_INCLUDE_DIR)

ZHF: #403336
This commit is contained in:
Sergei Trofimovich
2025-05-03 19:32:14 +01:00
parent 01e6f1370c
commit 748c0e4f9c
+2
View File
@@ -3,6 +3,7 @@
stdenv,
fetchFromGitHub,
SDL2,
libGL,
cmake,
makeWrapper,
unstableGitUpdater,
@@ -26,6 +27,7 @@ stdenv.mkDerivation rec {
];
buildInputs = [
SDL2
libGL
];
installPhase = ''