about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/qcheck/ppx_deriving_qcheck.nix
blob: 82dc5399f282240bf649e97570f51b9ed1c9b633 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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";
  };
}