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