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