2014-01-20 12:41:59 +00:00
|
|
|
{ cabal, mtl, optparseApplicative, reducers, split, stm, tagged
|
|
|
|
, tasty, transformers
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty-rerun";
|
2014-01-25 15:52:43 +00:00
|
|
|
version = "1.1.0";
|
|
|
|
sha256 = "0nizjmz9z41r1vzxzld760x6ga4lqycwfazhddk570w3x2dzm6p2";
|
2014-01-20 12:41:59 +00:00
|
|
|
buildDepends = [
|
|
|
|
mtl optparseApplicative reducers split stm tagged tasty
|
|
|
|
transformers
|
|
|
|
];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/ocharles/tasty-rerun";
|
|
|
|
description = "Run tests by filtering the test tree depending on the result of previous test runs";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
|
|
|
|
};
|
|
|
|
})
|