2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, ansiTerminal, ansiWlPprint, extensibleExceptions, hostname
|
|
|
|
, random, regexPosix, time, xml
|
2011-08-10 00:00:20 +01:00
|
|
|
}:
|
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";
|
2012-12-08 10:35:02 +00:00
|
|
|
version = "0.8";
|
|
|
|
sha256 = "1w895nq357zpc4v6vr5nbszyrw7cpsjq5bj38vdd10bfpjjmijcl";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
ansiTerminal ansiWlPprint extensibleExceptions hostname random
|
|
|
|
regexPosix time xml
|
2011-08-07 21:25:36 +01:00
|
|
|
];
|
2011-07-10 18:38:21 +01:00
|
|
|
meta = {
|
2011-08-07 21:25:36 +01: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 10:54:50 +01:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|