mathematica: fix libQt errors
This commit is contained in:
parent
8ebf265923
commit
77143fc628
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
, patchelf
|
||||
, requireFile
|
||||
, callPackage
|
||||
, makeWrapper
|
||||
, alsaLib
|
||||
, dbus
|
||||
, fontconfig
|
||||
|
@ -37,6 +38,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [
|
||||
coreutils
|
||||
patchelf
|
||||
makeWrapper
|
||||
alsaLib
|
||||
coreutils
|
||||
dbus
|
||||
|
@ -106,6 +108,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
# Remove some broken libraries
|
||||
rm -f $out/libexec/Mathematica/SystemFiles/Libraries/Linux-x86-64/libz.so*
|
||||
|
||||
# Set environment variable to fix libQt errors - see https://github.com/NixOS/nixpkgs/issues/96490
|
||||
wrapProgram $out/bin/mathematica --set USE_WOLFRAM_LD_LIBRARY_PATH 1
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
|
|
Loading…
Reference in a new issue