parabolic: 2024.5.0 -> 2025.1.4 (#378350)
[NixPkgs.git] / pkgs / development / ocaml-modules / qcheck / ounit.nix
blob6a09f20dfdf0ae8f3ae9ca53d714e54de3949637
2   buildDunePackage,
3   qcheck-core,
4   ounit,
5 }:
7 buildDunePackage {
8   pname = "qcheck-ounit";
10   inherit (qcheck-core) version src patches;
12   duneVersion = "3";
14   propagatedBuildInputs = [
15     qcheck-core
16     ounit
17   ];
19   meta = qcheck-core.meta // {
20     description = "OUnit backend for qcheck";
21   };