mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
haskell-quickcheck-property-monad: new expression
This commit is contained in:
parent
e61e23b6c7
commit
52bd5978a0
2 changed files with 17 additions and 0 deletions
|
@ -0,0 +1,15 @@
|
|||
{ cabal, doctest, either, filepath, QuickCheck, transformers }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "quickcheck-property-monad";
|
||||
version = "0.2.1";
|
||||
sha256 = "1ln8bcsc8hd8jyhd9rp2j90p5h5nhmwidb5my91p09h43y4z9xds";
|
||||
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;
|
||||
};
|
||||
})
|
|
@ -2182,6 +2182,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
quickcheckIo = callPackage ../development/libraries/haskell/quickcheck-io {};
|
||||
|
||||
quickcheckPropertyMonad = callPackage ../development/libraries/haskell/quickcheck-property-monad {};
|
||||
|
||||
qrencode = callPackage ../development/libraries/haskell/qrencode {
|
||||
inherit (pkgs) qrencode;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue