15 lines
262 B
Nix
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";
|
|
};
|
|
|
|
}
|