ocamlPackages.ppx_deriving_qcheck: init at 0.20

This commit is contained in:
Niols 2023-05-08 13:41:14 +00:00 committed by Vincent Laporte
parent 89325a10b0
commit 849e9aa221
2 changed files with 22 additions and 0 deletions

View File

@ -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";
};
}

View File

@ -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 {};