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