28 lines
992 B
Nix
28 lines
992 B
Nix
{ cabal, binary, deepseq, erf, HUnit, ieee754, mathFunctions
|
|
, monadPar, mwcRandom, primitive, QuickCheck, testFramework
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
|
, vectorAlgorithms, vectorBinaryInstances
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "statistics";
|
|
version = "0.10.4.1";
|
|
sha256 = "0kd3zn8ckz3h9dnighmfviacw5cy6czsj90ryn8c0h6yb2s3gqi1";
|
|
buildDepends = [
|
|
binary deepseq erf mathFunctions monadPar mwcRandom primitive
|
|
vector vectorAlgorithms vectorBinaryInstances
|
|
];
|
|
testDepends = [
|
|
erf HUnit ieee754 mathFunctions mwcRandom primitive QuickCheck
|
|
testFramework testFrameworkHunit testFrameworkQuickcheck2 vector
|
|
vectorAlgorithms
|
|
];
|
|
doCheck = false;
|
|
meta = {
|
|
homepage = "https://github.com/bos/statistics";
|
|
description = "A library of statistical types, data, and functions";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|