aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix
blob: 62b082f48fb2e10eba516228a2ed0be7e382ca39 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ buildDunePackage, qcheck-core, ounit }:

buildDunePackage {
  pname = "qcheck-ounit";

  inherit (qcheck-core) version useDune2 src;

  propagatedBuildInputs = [ qcheck-core ounit ];

  meta = qcheck-core.meta // {
    description = "OUnit backend for qcheck";
  };

}