julia-git: add macOS frameworks, hopefully that's useful
This commit is contained in:
parent
b47307bd74
commit
db7e616b45
|
@ -8,6 +8,8 @@
|
|||
, curl, fftwSinglePrec, fftw, gmp, libgit2, mpfr, openlibm, openspecfun, pcre2
|
||||
# linear algebra
|
||||
, openblas, arpack, suitesparse
|
||||
# Darwin frameworks
|
||||
, CoreServices, ApplicationServices
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
@ -80,7 +82,9 @@ stdenv.mkDerivation rec {
|
|||
arpack fftw fftwSinglePrec gmp libgit2 libunwind mpfr
|
||||
pcre2.dev openblas openlibm openspecfun readline suitesparse utf8proc
|
||||
zlib llvm
|
||||
];
|
||||
]
|
||||
++ stdenv.lib.optionals stdenv.isDarwin [CoreServices ApplicationServices]
|
||||
;
|
||||
|
||||
nativeBuildInputs = [ curl gfortran m4 makeWrapper patchelf perl python2 which ];
|
||||
|
||||
|
|
|
@ -5052,6 +5052,7 @@ in
|
|||
julia-git = lowPrio (callPackage ../development/compilers/julia/git.nix {
|
||||
gmp = gmp6;
|
||||
openblas = openblasCompat;
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices;
|
||||
llvm = llvm_39;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue