2013-11-09 10:28:24 -08:00
|
|
|
{ cabal, ansiTerminal, deepseq, mtl, optparseApplicative
|
|
|
|
, regexPosix, stm, tagged
|
2013-08-21 01:18:45 -07:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty";
|
2013-11-09 10:28:24 -08:00
|
|
|
version = "0.4.0.1";
|
|
|
|
sha256 = "04nnjg04520lvjm8h2ma0ihm4bz6p0ppk445i8gmn82ixwan76h0";
|
2013-08-21 01:18:45 -07:00
|
|
|
buildDepends = [
|
2013-11-09 10:28:24 -08:00
|
|
|
ansiTerminal deepseq mtl optparseApplicative regexPosix stm tagged
|
2013-08-21 01:18:45 -07:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
description = "Modern and extensible testing framework";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|