2011-08-23 11:35:49 +01:00
|
|
|
{ cabal, binary, blas, gsl, HUnit, liblapack, QuickCheck, random
|
|
|
|
, storableComplex, vector
|
|
|
|
}:
|
2010-05-27 20:33:23 +01:00
|
|
|
|
2011-08-15 12:27:02 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-05-27 20:33:23 +01:00
|
|
|
pname = "hmatrix";
|
2011-08-07 19:22:36 +01:00
|
|
|
version = "0.11.1.0";
|
|
|
|
sha256 = "19915xmf6m2092s1rzwirxy0rwjcr6482y5wg4bil0afm0xjnb9n";
|
2011-08-23 11:35:49 +01:00
|
|
|
buildDepends = [
|
|
|
|
binary HUnit QuickCheck random storableComplex vector
|
2011-08-07 19:22:36 +01:00
|
|
|
];
|
2011-08-23 12:00:05 +01:00
|
|
|
extraLibraries = [ blas gsl liblapack ];
|
2010-05-27 20:33:23 +01:00
|
|
|
meta = {
|
2011-08-07 19:22:36 +01:00
|
|
|
homepage = "http://perception.inf.um.es/hmatrix";
|
2010-05-27 20:33:23 +01:00
|
|
|
description = "Linear algebra and numerical computation";
|
2011-08-07 19:22:36 +01:00
|
|
|
license = "GPL";
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2011-08-07 19:22:36 +01:00
|
|
|
maintainers = [
|
2011-08-15 12:27:02 +01:00
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-07 19:22:36 +01:00
|
|
|
self.stdenv.lib.maintainers.guibert
|
2011-08-15 12:27:02 +01:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 19:22:36 +01:00
|
|
|
];
|
2010-05-27 20:33:23 +01:00
|
|
|
};
|
|
|
|
})
|