nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix
2023-04-05 08:43:28 +02:00

17 lines
292 B
Nix

{ buildDunePackage, qcheck-core, ounit }:
buildDunePackage {
pname = "qcheck-ounit";
inherit (qcheck-core) version src patches;
duneVersion = "3";
propagatedBuildInputs = [ qcheck-core ounit ];
meta = qcheck-core.meta // {
description = "OUnit backend for qcheck";
};
}