2014-03-20 19:55:10 +00:00
|
|
|
{ cabal, QuickCheck, tagged, tasty }:
|
2013-11-15 11:04:47 +00:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "tasty-quickcheck";
|
2014-05-15 15:09:38 +01:00
|
|
|
version = "0.8.1";
|
|
|
|
sha256 = "1diqc5dmddrfc6i0zqkmlnnhsv8paqy2fdmbx8484qa4ylk5r6bs";
|
2014-03-20 19:55:10 +00:00
|
|
|
buildDepends = [ QuickCheck tagged tasty ];
|
2013-11-15 11:04:47 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
})
|