2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, extensibleExceptions, HUnit, testFramework }:
|
2011-07-10 18:38:21 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-10 18:38:21 +01:00
|
|
|
pname = "test-framework-hunit";
|
2013-10-10 10:50:48 +01:00
|
|
|
version = "0.3.0.1";
|
|
|
|
sha256 = "1h0h55kf6ff25nbfx1mhliwyknc0glwv3zi78wpzllbjbs7gvyfk";
|
2012-02-16 14:05:41 +00:00
|
|
|
buildDepends = [ extensibleExceptions HUnit testFramework ];
|
2011-07-10 18:38:21 +01:00
|
|
|
meta = {
|
2013-10-10 10:50:48 +01:00
|
|
|
homepage = "https://batterseapower.github.io/test-framework/";
|
2011-08-11 14:03:51 +01:00
|
|
|
description = "HUnit support for the test-framework package";
|
2011-08-10 00:00:20 +01:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-10 18:38:21 +01:00
|
|
|
};
|
|
|
|
})
|