29 lines
992 B
Nix
29 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.5.2";
|
|
sha256 = "13wbxz83ci78k41c6swyiwi82rikm9i9vwjwj3d3w327xs59bvvy";
|
|
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 ];
|
|
};
|
|
})
|