nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix
2020-09-16 05:57:19 +02:00

15 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";
};
}