about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/qcheck/lin.nix
blob: 23164901ab6ea4a184e604f963c7f4132680cc7e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ buildDunePackage
, qcheck-multicoretests-util
}:

buildDunePackage {
  pname = "qcheck-lin";

  inherit (qcheck-multicoretests-util) version src;

  propagatedBuildInputs = [ qcheck-multicoretests-util ];

  doCheck = true;

  meta = qcheck-multicoretests-util.meta // {
    description = "A multicore testing library for OCaml";
  };
}