depot/third_party/nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix
Default email 02cf88bb76 Project import generated by Copybara.
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
2022-08-12 15:06:08 +03:00

14 lines
262 B
Nix

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