2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, erf, HUnit, ieee754, QuickCheck, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
|
|
|
}:
|
2012-01-16 11:33:34 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "math-functions";
|
2013-02-04 12:40:28 +00:00
|
|
|
version = "0.1.3.0";
|
|
|
|
sha256 = "06wxr8fbhmsgkpyx2vimx9l6apk0p27mwrxrvbjk0b7m9vsg3ay5";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ erf vector ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
HUnit ieee754 QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 vector
|
|
|
|
];
|
2012-01-16 11:33:34 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/bos/math-functions";
|
|
|
|
description = "Special functions and Chebyshev polynomials";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-03-23 13:57:25 +00:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2012-01-16 11:33:34 +00:00
|
|
|
};
|
|
|
|
})
|