2014-03-07 23:13:22 +01:00
|
|
|
{ cabal, ansiTerminal, async, deepseq, mtl, optparseApplicative
|
|
|
|
, regexTdfa, stm, tagged, unboundedDelays
|
2013-08-21 10:18:45 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty";
|
2014-05-24 10:58:26 +02:00
|
|
|
version = "0.8.1.1";
|
|
|
|
sha256 = "04vzq5gwyd5zb6lsf8nbr5dypgf07b4aq70i1jghkg12v8h529dr";
|
2013-08-21 10:18:45 +02:00
|
|
|
buildDepends = [
|
2014-03-07 23:13:22 +01:00
|
|
|
ansiTerminal async deepseq mtl optparseApplicative regexTdfa stm
|
|
|
|
tagged unboundedDelays
|
2013-08-21 10:18:45 +02:00
|
|
|
];
|
|
|
|
meta = {
|
2014-03-07 23:13:22 +01:00
|
|
|
homepage = "http://documentup.com/feuerbach/tasty";
|
2013-08-21 10:18:45 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
})
|