julia: fix library path management after multiple-outputs/closure-size merge

This commit is contained in:
Michael Raskin 2016-04-13 16:31:40 +02:00
parent fdd2c6e2ca
commit 14b8bdc01f

View File

@ -130,10 +130,10 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = [ "-fPIC" ]; NIX_CFLAGS_COMPILE = [ "-fPIC" ];
LD_LIBRARY_PATH = makeSearchPath "lib" [ LD_LIBRARY_PATH = makeSearchPath "lib" (concatLists (map (x : x.all) [
arpack fftw fftwSinglePrec gmp libgit2 mpfr openblas openlibm arpack fftw fftwSinglePrec gmp libgit2 mpfr openblas openlibm
openspecfun pcre2 suitesparse openspecfun pcre2 suitesparse
]; ]));
dontStrip = true; dontStrip = true;
dontPatchELF = true; dontPatchELF = true;