ocamlPackages.qcheck-ounit: init at 0.15

This commit is contained in:
Vincent Laporte
2020-09-16 05:57:19 +02:00
committed by Vincent Laporte
parent 8d27394e25
commit 79a0130dbd
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,14 @@
{ 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";
};
}