mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 14:22:50 +03:00
julia: fix library path management after multiple-outputs/closure-size merge
This commit is contained in:
parent
fdd2c6e2ca
commit
14b8bdc01f
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user