2013-02-24 22:09:07 +01:00
|
|
|
{ cabal, deepseq, erf, HUnit, ieee754, mathFunctions, monadPar
|
|
|
|
, mwcRandom, primitive, QuickCheck, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
|
|
|
, 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";
|
2012-08-27 11:30:50 +02:00
|
|
|
version = "0.10.2.0";
|
|
|
|
sha256 = "1sv0fhbi52maq9c4ni109m0051a1nndi3ncz9v29mkxqzyckrp9x";
|
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 = [
|
|
|
|
erf HUnit ieee754 mathFunctions primitive QuickCheck testFramework
|
|
|
|
testFrameworkHunit testFrameworkQuickcheck2 vector vectorAlgorithms
|
|
|
|
];
|
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;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-17 16:38:16 +01:00
|
|
|
};
|
2011-03-28 17:04:00 +02:00
|
|
|
})
|