haskell-fuzzcheck: new expression

This commit is contained in:
John Wiegley 2014-06-07 12:15:54 +00:00
parent 03bd5f9f44
commit 0fcd4f98ff
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ cabal, hspec, hspecExpectations, HUnit, liftedBase, monadControl
, QuickCheck, random, transformers
}:
cabal.mkDerivation (self: {
pname = "fuzzcheck";
version = "0.1.1";
sha256 = "0qfr4f0b50l368b45yzwhqd4g2y1kvfrfj4hr84cdxcwdrwn9mpc";
buildDepends = [
liftedBase monadControl QuickCheck random transformers
];
testDepends = [ hspec hspecExpectations HUnit QuickCheck ];
meta = {
homepage = "https://github.com/fpco/fuzzcheck";
description = "A simple checker for stress testing monadic code";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -800,6 +800,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
freetype2 = callPackage ../development/libraries/haskell/freetype2 {};
fuzzcheck = callPackage ../development/libraries/haskell/fuzzcheck {};
gamma = callPackage ../development/libraries/haskell/gamma {};
geniplate = callPackage ../development/libraries/haskell/geniplate {};