3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
23 lines
733 B
Nix
23 lines
733 B
Nix
{ cabal, ansiTerminal, ansiWlPprint, extensibleExceptions, hostname
|
|
, random, regexPosix, time, xml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "test-framework";
|
|
version = "0.8";
|
|
sha256 = "1w895nq357zpc4v6vr5nbszyrw7cpsjq5bj38vdd10bfpjjmijcl";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
ansiTerminal ansiWlPprint extensibleExceptions hostname random
|
|
regexPosix time xml
|
|
];
|
|
meta = {
|
|
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;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|