diff options
| author | Dmitry Kalinkin <dmitry.kalinkin@gmail.com> | 2024-10-02 18:38:01 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-02 18:38:01 -0400 |
| commit | b7390859cef6efff4b788a051747dd6ec092b309 (patch) | |
| tree | d61cf0b27e293bf5f9cb91d2054c2e9e0816769d | |
| parent | mongodb-compass: 1.44.3 -> 1.44.4 (#345845) (diff) | |
| download | nixpkgs-b7390859cef6efff4b788a051747dd6ec092b309.tar.gz | |
geant4: disable OGLX frontend by default on darwinorigin/pr/geant4_no_glx
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 backend.
| -rw-r--r-- | pkgs/development/libraries/physics/geant4/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/physics/geant4/default.nix b/pkgs/development/libraries/physics/geant4/default.nix index 128d7391fc4a..31e76793ec01 100644 --- a/pkgs/development/libraries/physics/geant4/default.nix +++ b/pkgs/development/libraries/physics/geant4/default.nix @@ -4,7 +4,7 @@ , enableQt ? enableQT , enableXM ? false , libGLX -, enableOpenGLX11 ? !libGLX.meta.broken +, enableOpenGLX11 ? !stdenv.isDarwin , enablePython ? false , enableRaytracerX11 ? false |
