forked from mirrors/nixpkgs
ac69747aa8
svn path=/nixpkgs/trunk/; revision=32292
24 lines
695 B
Nix
24 lines
695 B
Nix
{ cabal, binary, blas, Cabal, gsl, liblapack, storableComplex
|
|
, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hmatrix";
|
|
version = "0.13.1.0";
|
|
sha256 = "0pl5z6zsxyvbdfdng77r2c4isq6d4wbyzx2qs9r8rbn6glaxwrmp";
|
|
buildDepends = [ binary Cabal storableComplex vector ];
|
|
extraLibraries = [ blas gsl liblapack ];
|
|
configureFlags = "-fvector";
|
|
meta = {
|
|
homepage = "http://perception.inf.um.es/hmatrix";
|
|
description = "Linear algebra and numerical computation";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.guibert
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|