2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, ansiTerminal, ansiWlPprint, extensibleExceptions, hostname
|
|
|
|
, random, regexPosix, time, xml
|
2011-08-09 16:00:20 -07:00
|
|
|
}:
|
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";
|
2012-12-08 02:35:02 -08:00
|
|
|
version = "0.8";
|
|
|
|
sha256 = "1w895nq357zpc4v6vr5nbszyrw7cpsjq5bj38vdd10bfpjjmijcl";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
ansiTerminal ansiWlPprint extensibleExceptions hostname random
|
|
|
|
regexPosix time xml
|
2011-08-07 13:25:36 -07:00
|
|
|
];
|
2011-07-10 10:38:21 -07:00
|
|
|
meta = {
|
2011-08-07 13:25:36 -07:00
|
|
|
homepage = "http://batterseapower.github.com/test-framework/";
|
|
|
|
description = "Framework for running and organising tests, with HUnit and QuickCheck support";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-10 10:38:21 -07:00
|
|
|
};
|
|
|
|
})
|