nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix

15 lines
271 B
Nix
Raw Normal View History

{ buildDunePackage, qcheck-core, ounit }:
buildDunePackage {
pname = "qcheck-ounit";
2020-11-30 07:18:45 +00:00
inherit (qcheck-core) version useDune2 src;
propagatedBuildInputs = [ qcheck-core ounit ];
meta = qcheck-core.meta // {
description = "OUnit backend for qcheck";
};
}