haskell-chell-quickcheck: add version 0.2.2

This commit is contained in:
Peter Simons 2014-03-15 09:25:15 +01:00
parent d03aa6a13f
commit f5e1190036
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,14 @@
{ cabal, chell, QuickCheck, random }:
cabal.mkDerivation (self: {
pname = "chell-quickcheck";
version = "0.2.2";
sha256 = "05qshv9vcl05khxsxyks2z7dqd8dqafjsg3awkkdhviviv5p2fp8";
buildDepends = [ chell QuickCheck random ];
meta = {
homepage = "https://john-millikin.com/software/chell/";
description = "QuickCheck support for the Chell testing library";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -760,6 +760,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
chell = callPackage ../development/libraries/haskell/chell {};
chellQuickcheck = callPackage ../development/libraries/haskell/chell-quickcheck {};
chunkedData = callPackage ../development/libraries/haskell/chunked-data {};
citeprocHs = callPackage ../development/libraries/haskell/citeproc-hs {};