2012-02-14 09:00:37 -08:00
|
|
|
{ cabal, Cabal, extensibleExceptions, HUnit, testFramework }:
|
2011-07-10 10:38:21 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-10 10:38:21 -07:00
|
|
|
pname = "test-framework-hunit";
|
2012-01-27 12:31:09 -08:00
|
|
|
version = "0.2.7";
|
|
|
|
sha256 = "1c7424i5vnggzncwiwqqwq7ir7kaijif2waqmss5pn6db3gj33fc";
|
2012-02-14 09:00:37 -08:00
|
|
|
buildDepends = [ Cabal extensibleExceptions HUnit testFramework ];
|
2011-07-10 10:38:21 -07:00
|
|
|
meta = {
|
2011-08-09 16:00:20 -07:00
|
|
|
homepage = "http://batterseapower.github.com/test-framework/";
|
2011-08-11 06:03:51 -07:00
|
|
|
description = "HUnit support for the test-framework package";
|
2011-08-09 16:00:20 -07:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-10 10:38:21 -07:00
|
|
|
};
|
|
|
|
})
|