2013-10-10 11:50:48 +02:00
|
|
|
{ cabal, ansiTerminal, ansiWlPprint, 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";
|
2013-10-10 11:50:48 +02:00
|
|
|
version = "0.8.0.3";
|
|
|
|
sha256 = "136nw5dapsz3jrnw1pdfkjgplxigpr2mrf6i85154vx342zvw5ar";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2013-10-10 11:50:48 +02:00
|
|
|
ansiTerminal ansiWlPprint hostname random regexPosix time xml
|
2011-08-07 22:25:36 +02:00
|
|
|
];
|
2011-07-10 19:38:21 +02:00
|
|
|
meta = {
|
2013-10-10 11:50:48 +02:00
|
|
|
homepage = "https://batterseapower.github.io/test-framework/";
|
2011-08-07 22:25:36 +02:00
|
|
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-10 19:38:21 +02:00
|
|
|
};
|
|
|
|
})
|