ocamlPackages.ppx_deriving_qcheck: init at 0.20
This commit is contained in:
parent
89325a10b0
commit
849e9aa221
2 changed files with 22 additions and 0 deletions
|
@ -0,0 +1,20 @@
|
|||
{ buildDunePackage, qcheck-core
|
||||
, qcheck, ppxlib, ppx_deriving }:
|
||||
|
||||
buildDunePackage {
|
||||
pname = "ppx_deriving_qcheck";
|
||||
|
||||
inherit (qcheck-core) version src patches;
|
||||
|
||||
duneVersion = "3";
|
||||
|
||||
propagatedBuildInputs = [
|
||||
qcheck
|
||||
ppxlib
|
||||
ppx_deriving
|
||||
];
|
||||
|
||||
meta = qcheck-core.meta // {
|
||||
description = "PPX Deriver for QCheck";
|
||||
};
|
||||
}
|
|
@ -1356,6 +1356,8 @@ let
|
|||
|
||||
ppx_deriving_protobuf = callPackage ../development/ocaml-modules/ppx_deriving_protobuf {};
|
||||
|
||||
ppx_deriving_qcheck = callPackage ../development/ocaml-modules/qcheck/ppx_deriving_qcheck.nix {};
|
||||
|
||||
ppx_deriving_rpc = callPackage ../development/ocaml-modules/ppx_deriving_rpc { };
|
||||
|
||||
ppx_deriving_yaml = callPackage ../development/ocaml-modules/ppx_deriving_yaml {};
|
||||
|
|
Loading…
Reference in a new issue