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