Re-generate all Haskell packages with the latest version of cabal2nix.

This change brings support for building and running the regressions test suites.
This commit is contained in:
Peter Simons
2013-02-24 22:09:07 +01:00
parent d0bfd6936e
commit a30df95691
146 changed files with 680 additions and 180 deletions

View File

@@ -1,10 +1,16 @@
{ cabal, erf, vector }:
{ cabal, erf, HUnit, ieee754, QuickCheck, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, vector
}:
cabal.mkDerivation (self: {
pname = "math-functions";
version = "0.1.3.0";
sha256 = "06wxr8fbhmsgkpyx2vimx9l6apk0p27mwrxrvbjk0b7m9vsg3ay5";
buildDepends = [ erf vector ];
testDepends = [
HUnit ieee754 QuickCheck testFramework testFrameworkHunit
testFrameworkQuickcheck2 vector
];
meta = {
homepage = "https://github.com/bos/math-functions";
description = "Special functions and Chebyshev polynomials";