2012-03-22 04:17:49 -07:00
|
|
|
{ cabal, binary, blas, gsl, liblapack, random, storableComplex
|
|
|
|
, vector
|
|
|
|
}:
|
2010-05-27 12:33:23 -07:00
|
|
|
|
2011-08-15 04:27:02 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-05-27 12:33:23 -07:00
|
|
|
pname = "hmatrix";
|
2012-08-03 08:42:47 -07:00
|
|
|
version = "0.14.1.0";
|
|
|
|
sha256 = "10fvbk3k2fgac46a86mc8g0s5gsw1p1bz4k57gn6dzgwh73mxjx7";
|
2012-03-22 04:17:49 -07:00
|
|
|
buildDepends = [ binary random storableComplex vector ];
|
2011-08-23 04:00:05 -07:00
|
|
|
extraLibraries = [ blas gsl liblapack ];
|
2010-05-27 12:33:23 -07:00
|
|
|
meta = {
|
2012-03-22 04:17:49 -07:00
|
|
|
homepage = "https://github.com/albertoruiz/hmatrix";
|
2010-05-27 12:33:23 -07:00
|
|
|
description = "Linear algebra and numerical computation";
|
2011-08-07 11:22:36 -07:00
|
|
|
license = "GPL";
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 11:22:36 -07:00
|
|
|
maintainers = [
|
2011-08-15 04:27:02 -07:00
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-07 11:22:36 -07:00
|
|
|
self.stdenv.lib.maintainers.guibert
|
|
|
|
];
|
2010-05-27 12:33:23 -07:00
|
|
|
};
|
|
|
|
})
|