2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, deepseq, erf, HUnit, ieee754, mathFunctions, monadPar
|
|
|
|
, mwcRandom, primitive, QuickCheck, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
2013-04-18 01:51:41 -07:00
|
|
|
, vectorAlgorithms
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
2010-11-17 07:38:16 -08:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-17 07:38:16 -08:00
|
|
|
pname = "statistics";
|
2013-04-18 01:51:41 -07:00
|
|
|
version = "0.10.3.1";
|
|
|
|
sha256 = "12abfqxsriqlncr60wwcsm0q41hmqc6vp9p1hmnv2l3qqcisk60s";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
deepseq erf mathFunctions monadPar mwcRandom primitive vector
|
2012-01-24 07:06:32 -08:00
|
|
|
vectorAlgorithms
|
2011-08-09 16:00:20 -07:00
|
|
|
];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [
|
2013-04-14 11:54:59 -07:00
|
|
|
erf HUnit ieee754 mathFunctions mwcRandom primitive QuickCheck
|
|
|
|
testFramework testFrameworkHunit testFrameworkQuickcheck2 vector
|
|
|
|
vectorAlgorithms
|
2013-02-24 13:09:07 -08:00
|
|
|
];
|
2013-02-24 15:06:11 -08:00
|
|
|
doCheck = false;
|
2010-11-17 07:38:16 -08:00
|
|
|
meta = {
|
2011-12-02 03:47:25 -08:00
|
|
|
homepage = "https://github.com/bos/statistics";
|
2011-08-09 16:00:20 -07:00
|
|
|
description = "A library of statistical types, data, and functions";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 15:36:36 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-17 07:38:16 -08:00
|
|
|
};
|
2011-03-28 08:04:00 -07:00
|
|
|
})
|