haskellPackages.tastyQuickcheck: New expression

This commit is contained in:
Oliver Charles 2013-11-15 11:04:47 +00:00 committed by Peter Simons
parent 2e8c5b626c
commit 17b738330c
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, QuickCheck, random, tagged, tasty }:
cabal.mkDerivation (self: {
pname = "tasty-quickcheck";
version = "0.3.1";
sha256 = "1rajvcq2a1yxdbb4kykvab1p9rnmsd2lgmlk61nd4fxvsvfj5gzn";
buildDepends = [ QuickCheck random tagged tasty ];
meta = {
description = "QuickCheck support for the Tasty test framework";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})

View file

@ -2052,6 +2052,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
tastyHunit = callPackage ../development/libraries/haskell/tasty-hunit {};
tastyQuickcheck = callPackage ../development/libraries/haskell/tasty-quickcheck {};
tastySmallcheck = callPackage ../development/libraries/haskell/tasty-smallcheck {};
templateDefault = callPackage ../development/libraries/haskell/template-default {};