forked from mirrors/nixpkgs
haskellPackages.blas-hs: fix on darwin by providing Accelerate
This commit is contained in:
parent
2b5949d67d
commit
070d43bcb2
|
@ -106,6 +106,12 @@ self: super: {
|
|||
|
||||
hmatrix = addBuildDepend super.hmatrix darwin.apple_sdk.frameworks.Accelerate;
|
||||
|
||||
blas-hs = overrideCabal super.blas-hs (drv: {
|
||||
libraryFrameworkDepends = [
|
||||
darwin.apple_sdk.frameworks.Accelerate
|
||||
] ++ (drv.libraryFrameworkDepends or []);
|
||||
});
|
||||
|
||||
# Ensure the necessary frameworks are propagatedBuildInputs on darwin
|
||||
OpenGLRaw = overrideCabal super.OpenGLRaw (drv: {
|
||||
librarySystemDepends = [];
|
||||
|
|
Loading…
Reference in a new issue