
Hi Chris,
I'm sort of guessing that maybe you are trying to build
a old version of Crypto against a QuickCheck vesion 2.4
or later. There are incompatible API changes in
Quickcheck 2.4.
The latest Crypto:
http://hackage.haskell.org/package/Crypto-4.2.3
builds with Quickcheck 2.4.0.1
Regards, Mark
On Sat, 19 Feb 2011 12:09:54 -0800, Chris Bolton
http://paste.pocoo.org/show/341187/
any ideas? Non-text part: text/html _______________________________________________ Beginners mailing list Beginners@haskell.org http://www.haskell.org/mailman/listinfo/beginners

On Saturday 19 February 2011 21:09:54, Chris Bolton wrote:
http://paste.pocoo.org/show/341187/
any ideas?
At some point in time (with QuickCheck-2.1.2), the Arbitrary instances for Word8 and Word64 were included in Test.QuickCheck.Arbitrary. Probably around the same time, they were removed from QuickTest.hs in the Crypto package (because one can't have multiple instances for the same type). Seems your QuickCheck is too old for the current Crypto. You can install an older Crypto or a newer QuickCheck. Getting the latest QuickCheck is probably the better way. Cheers, Daniel
participants (3)
-
Chris Bolton
-
Daniel Fischer
-
Mark Wright