3
0
Fork 0
forked from mirrors/nixpkgs

haskell-hmatrix: build with openblas

Fixes #6392.
This commit is contained in:
Thomas Tuegel 2015-06-04 13:49:41 -05:00
parent 6e3eac5c92
commit 90b2afee04

View file

@ -119,6 +119,11 @@ self: super: {
# Help libconfig find it's C language counterpart.
libconfig = (dontCheck super.libconfig).override { config = pkgs.libconfig; };
hmatrix = overrideCabal super.hmatrix (drv: {
configureFlags = (drv.configureFlags or []) ++ [ "-fopenblas" ];
extraLibraries = [ pkgs.openblasCompat ];
});
# The Haddock phase fails for one reason or another.
attoparsec-conduit = dontHaddock super.attoparsec-conduit;
base-noprelude = dontHaddock super.base-noprelude;