geant4: disable OGLX frontend by default on darwin (#346021)

This requires linking to Gallium, which seems to fail downstream:
```
ERROR: failed to load libFOO.dylib: dlopen(libFOO.dylib, 5): Library not loaded: @rpath/libgallium-24.2.2.dylib
  Referenced from: /nix/store/cnschgva12mp3cklach4c0jcvcghxy1h-mesa-24.2.2/lib/libGL.1.dylib
  Reason: image not found
```

It also appears to break the native OpenGL/Qt frontend.
This commit is contained in:
Dmitry Kalinkin 2024-10-04 06:45:45 -04:00 committed by GitHub
parent d783411040
commit fb476d278a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,7 +4,7 @@
, enableQt ? enableQT
, enableXM ? false
, libGLX
, enableOpenGLX11 ? !libGLX.meta.broken
, enableOpenGLX11 ? !stdenv.isDarwin
, enablePython ? false
, enableRaytracerX11 ? false