2013-05-30 02:01:49 -07:00
|
|
|
{ cabal, binary, deepseq, erf, HUnit, ieee754, mathFunctions
|
|
|
|
, monadPar, mwcRandom, primitive, QuickCheck, testFramework
|
2013-02-24 13:09:07 -08:00
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
2013-05-30 02:01:49 -07:00
|
|
|
, vectorAlgorithms, vectorBinaryInstances
|
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-12-26 11:37:03 -08:00
|
|
|
version = "0.10.5.2";
|
|
|
|
sha256 = "13wbxz83ci78k41c6swyiwi82rikm9i9vwjwj3d3w327xs59bvvy";
|
2011-08-09 16:00:20 -07:00
|
|
|
buildDepends = [
|
2013-05-30 02:01:49 -07:00
|
|
|
binary deepseq erf mathFunctions monadPar mwcRandom primitive
|
|
|
|
vector vectorAlgorithms vectorBinaryInstances
|
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
|
|
|
})
|