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