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