mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
Merge pull request #27440 from mnacamura/mathematica11_fix_ldpath
mathematica: fix library paths
This commit is contained in:
commit
006edcc316
1 changed files with 7 additions and 0 deletions
|
@ -56,6 +56,7 @@ stdenv.mkDerivation rec {
|
|||
unixODBC
|
||||
libxml2
|
||||
libuuid
|
||||
zlib
|
||||
] ++ (with xorg; [
|
||||
libX11
|
||||
libXext
|
||||
|
@ -93,6 +94,12 @@ stdenv.mkDerivation rec {
|
|||
|
||||
echo "=== Running MathInstaller ==="
|
||||
./MathInstaller -auto -createdir=y -execdir=$out/bin -targetdir=$out/libexec/Mathematica -silent
|
||||
|
||||
# Fix library paths
|
||||
cd $out/libexec/Mathematica/Executables
|
||||
for path in mathematica MathKernel Mathematica WolframKernel wolfram math; do
|
||||
sed -i -e 's#export LD_LIBRARY_PATH$#export LD_LIBRARY_PATH=${zlib}/lib:\''${LD_LIBRARY_PATH}#' $path
|
||||
done
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
|
|
Loading…
Reference in a new issue