haskellPackages.tastyRerun: New expression
This commit is contained in:
parent
7b51e24de9
commit
e217fd9ae8
20
pkgs/development/libraries/haskell/tasty-rerun/default.nix
Normal file
20
pkgs/development/libraries/haskell/tasty-rerun/default.nix
Normal 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 ];
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user