2014-03-07 22:13:07 +00:00
|
|
|
{ cabal, deepseq, erf, HUnit, ieee754, QuickCheck, testFramework
|
2013-02-24 21:09:07 +00:00
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, vector
|
2014-03-07 22:13:07 +00:00
|
|
|
, vectorThUnbox
|
2013-02-24 21:09:07 +00:00
|
|
|
}:
|
2012-01-16 11:33:34 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "math-functions";
|
2014-03-07 22:13:07 +00:00
|
|
|
version = "0.1.5.2";
|
|
|
|
sha256 = "12cznf7gwia1ki7xhvlhk5p8d09zrdvfgn07pkp4sfrwsc4vijcy";
|
|
|
|
buildDepends = [ deepseq erf vector vectorThUnbox ];
|
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-05-10 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-01-16 11:33:34 +00:00
|
|
|
};
|
|
|
|
})
|