2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, ansiTerminal, ansiWlPprint, extensibleExceptions, hostname
|
|
|
|
, random, regexPosix, time, xml
|
2011-08-10 01:00:20 +02:00
|
|
|
}:
|
2011-07-10 19:38:21 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-10 19:38:21 +02:00
|
|
|
pname = "test-framework";
|
2012-03-22 12:17:49 +01:00
|
|
|
version = "0.6";
|
|
|
|
sha256 = "1ah5q3fwd5dmh2zb4rphdpz7hs39m4g1khvxjjwfzwyd9pxiz723";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
ansiTerminal ansiWlPprint extensibleExceptions hostname random
|
|
|
|
regexPosix time xml
|
2011-08-07 22:25:36 +02:00
|
|
|
];
|
2011-07-10 19:38:21 +02:00
|
|
|
meta = {
|
2011-08-07 22:25:36 +02: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 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-10 19:38:21 +02:00
|
|
|
};
|
|
|
|
})
|