nixpkgs/pkgs/development/libraries/haskell/statistics/default.nix
Peter Simons 3b2254a3af Remove myself from the meta.maintainer field of most Haskell packages.
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
2013-05-11 00:36:59 +02:00

29 lines
932 B
Nix

{ cabal, deepseq, erf, HUnit, ieee754, mathFunctions, monadPar
, mwcRandom, primitive, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, vector
, vectorAlgorithms
}:
cabal.mkDerivation (self: {
pname = "statistics";
version = "0.10.3.1";
sha256 = "12abfqxsriqlncr60wwcsm0q41hmqc6vp9p1hmnv2l3qqcisk60s";
buildDepends = [
deepseq erf mathFunctions monadPar mwcRandom primitive vector
vectorAlgorithms
];
testDepends = [
erf HUnit ieee754 mathFunctions mwcRandom primitive QuickCheck
testFramework testFrameworkHunit testFrameworkQuickcheck2 vector
vectorAlgorithms
];
doCheck = false;
meta = {
homepage = "https://github.com/bos/statistics";
description = "A library of statistical types, data, and functions";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})