2013-05-30 10:01:49 +01:00
|
|
|
{ cabal, binary, deepseq, erf, HUnit, ieee754, mathFunctions
|
|
|
|
, monadPar, mwcRandom, primitive, QuickCheck, testFramework
|
2013-02-24 21:09:07 +00:00
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
2013-05-30 10:01:49 +01:00
|
|
|
, vectorAlgorithms, vectorBinaryInstances
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
2010-11-17 15:38:16 +00:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2010-11-17 15:38:16 +00:00
|
|
|
pname = "statistics";
|
2013-12-26 19:37:03 +00:00
|
|
|
version = "0.10.5.2";
|
|
|
|
sha256 = "13wbxz83ci78k41c6swyiwi82rikm9i9vwjwj3d3w327xs59bvvy";
|
2011-08-10 00:00:20 +01:00
|
|
|
buildDepends = [
|
2013-05-30 10:01:49 +01:00
|
|
|
binary deepseq erf mathFunctions monadPar mwcRandom primitive
|
|
|
|
vector vectorAlgorithms vectorBinaryInstances
|
2011-08-10 00:00:20 +01:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2013-04-14 19:54:59 +01:00
|
|
|
erf HUnit ieee754 mathFunctions mwcRandom primitive QuickCheck
|
|
|
|
testFramework testFrameworkHunit testFrameworkQuickcheck2 vector
|
|
|
|
vectorAlgorithms
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2013-02-24 23:06:11 +00:00
|
|
|
doCheck = false;
|
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-10 00:00:20 +01:00
|
|
|
description = "A library of statistical types, data, and functions";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2010-11-17 15:38:16 +00:00
|
|
|
};
|
2011-03-28 16:04:00 +01:00
|
|
|
})
|