nixpkgs/pkgs/development/libraries/haskell/statistics/default.nix
Peter Simons a30df95691 Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
2013-02-25 00:32:40 +01:00

27 lines
899 B
Nix

{ cabal, deepseq, erf, HUnit, ieee754, mathFunctions, monadPar
, mwcRandom, primitive, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, vector
, vectorAlgorithms
}:
cabal.mkDerivation (self: {
pname = "statistics";
version = "0.10.2.0";
sha256 = "1sv0fhbi52maq9c4ni109m0051a1nndi3ncz9v29mkxqzyckrp9x";
buildDepends = [
deepseq erf mathFunctions monadPar mwcRandom primitive vector
vectorAlgorithms
];
testDepends = [
erf HUnit ieee754 mathFunctions primitive QuickCheck testFramework
testFrameworkHunit testFrameworkQuickcheck2 vector vectorAlgorithms
];
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 ];
};
})