2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, deepseq, erf, mathFunctions, monadPar, mwcRandom
|
2012-01-24 15:06:32 +00:00
|
|
|
, primitive, vector, vectorAlgorithms
|
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";
|
2012-01-24 15:06:32 +00:00
|
|
|
version = "0.10.1.0";
|
|
|
|
sha256 = "0fnpwnhcwxjcm81b9daqdy07cw5qgqa7m2bj6fxxwicpvawcyabc";
|
2011-08-10 00:00:20 +01: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-10 00:00:20 +01:00
|
|
|
];
|
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;
|
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 16:04:00 +01:00
|
|
|
})
|