2011-08-10 01:00:20 +02:00
|
|
|
{ cabal, ansiTerminal, ansiWlPprint, extensibleExceptions, hostname
|
2011-08-12 02:18:56 +02:00
|
|
|
, 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";
|
2011-12-09 19:07:33 +01:00
|
|
|
version = "0.4.2.0";
|
|
|
|
sha256 = "0a74ajlmwsajrj06k22zqwnyxqfrpbd9xplf4b1swafp7y952ind";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2011-08-12 02:18:56 +02: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;
|
2011-08-07 22:25:36 +02:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
2011-08-10 01:00:20 +02:00
|
|
|
self.stdenv.lib.maintainers.simons
|
2011-08-07 22:25:36 +02:00
|
|
|
];
|
2011-07-10 19:38:21 +02:00
|
|
|
};
|
|
|
|
})
|