haskell-hmatrix: enable -fvector flag

svn path=/nixpkgs/trunk/; revision=29907
This commit is contained in:
Peter Simons 2011-10-19 18:26:02 +00:00
parent 8398d7ef2a
commit 9a8c52cf41
2 changed files with 2 additions and 3 deletions

View file

@ -10,6 +10,7 @@ cabal.mkDerivation (self: {
binary HUnit QuickCheck random storableComplex vector
];
extraLibraries = [ blas gsl liblapack ];
configureFlags = "-fvector";
meta = {
homepage = "http://perception.inf.um.es/hmatrix";
description = "Linear algebra and numerical computation";

View file

@ -744,9 +744,7 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
HList = callPackage ../development/libraries/haskell/HList {};
hmatrix = callPackage ../development/libraries/haskell/hmatrix {
vector = self.vector_0_7_1;
};
hmatrix = callPackage ../development/libraries/haskell/hmatrix {};
hopenssl = callPackage ../development/libraries/haskell/hopenssl {};