summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Kalinkin <dmitry.kalinkin@gmail.com>2024-10-02 18:38:01 -0400
committerGitHub <noreply@github.com>2024-10-02 18:38:01 -0400
commitb7390859cef6efff4b788a051747dd6ec092b309 (patch)
treed61cf0b27e293bf5f9cb91d2054c2e9e0816769d
parentmongodb-compass: 1.44.3 -> 1.44.4 (#345845) (diff)
downloadnixpkgs-origin/pr/geant4_no_glx.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.nix2
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