2014-05-05 21:45:42 +02:00
|
|
|
{ cabal, doctest, either, filepath, QuickCheck, transformers }:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "quickcheck-property-monad";
|
2014-06-23 22:37:52 +02:00
|
|
|
version = "0.2.2";
|
|
|
|
sha256 = "1liixl4xxpx9f3877sss16m67y5bkwhxdmr8h40rpqdi7dz9s0mj";
|
2014-05-05 21:45:42 +02:00
|
|
|
buildDepends = [ either QuickCheck transformers ];
|
|
|
|
testDepends = [ doctest filepath QuickCheck ];
|
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/bennofs/quickcheck-property-monad/";
|
|
|
|
description = "quickcheck-property-monad";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|