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