0c842e7620
- cautious-file: updated to version 1.0.1 - hmatrix: updated to version 0.14.0.1 - random-fu: updated to version 0.2.2.0 - resourcet: added version 0.3.0 - sendfile: updated to version 0.7.6 - test-framework: added version 0.6 svn path=/nixpkgs/trunk/; revision=33354
23 lines
669 B
Nix
23 lines
669 B
Nix
{ cabal, binary, blas, gsl, liblapack, random, storableComplex
|
|
, vector
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "hmatrix";
|
|
version = "0.14.0.1";
|
|
sha256 = "057ii711qsh5307bp3jqpvlhwp2iacr83whhjm5053b5psinj4z5";
|
|
buildDepends = [ binary random storableComplex vector ];
|
|
extraLibraries = [ blas gsl liblapack ];
|
|
meta = {
|
|
homepage = "https://github.com/albertoruiz/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
|
|
];
|
|
};
|
|
})
|