2013-11-09 19:28:24 +01:00
|
|
|
{ cabal, ansiTerminal, deepseq, mtl, optparseApplicative
|
|
|
|
, regexPosix, stm, tagged
|
2013-08-21 10:18:45 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty";
|
2013-12-14 11:30:18 +01:00
|
|
|
version = "0.5.2";
|
|
|
|
sha256 = "0zj6bpqld04sivfkpzjp2c587mmygl3699znqmhp1dbv0fpq6949";
|
2013-08-21 10:18:45 +02:00
|
|
|
buildDepends = [
|
2013-11-09 19:28:24 +01:00
|
|
|
ansiTerminal deepseq mtl optparseApplicative regexPosix stm tagged
|
2013-08-21 10:18:45 +02:00
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
description = "Modern and extensible testing framework";
|
|
|
|
license = self.stdenv.lib.licenses.mit;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-11-15 12:12:30 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
2013-08-21 10:18:45 +02:00
|
|
|
};
|
|
|
|
})
|