3
0
Fork 0
forked from mirrors/nixpkgs

haskellPackages.tastyRerun: New expression

This commit is contained in:
Oliver Charles 2014-01-20 12:41:59 +00:00 committed by Rok Garbas
parent 7b51e24de9
commit e217fd9ae8
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ cabal, mtl, optparseApplicative, reducers, split, stm, tagged
, tasty, transformers
}:
cabal.mkDerivation (self: {
pname = "tasty-rerun";
version = "1.0.0";
sha256 = "0vpgsb5fgvb9mx07zq53slqxxk2vvr2c9c9p1fhrm9qadfirsqc8";
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 ];
};
})

View file

@ -2219,6 +2219,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
tastyQuickcheck = callPackage ../development/libraries/haskell/tasty-quickcheck {};
tastyRerun = callPackage ../development/libraries/haskell/tasty-rerun {};
tastySmallcheck = callPackage ../development/libraries/haskell/tasty-smallcheck {};
tastyTh = callPackage ../development/libraries/haskell/tasty-th {};