3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/qcheck/ounit.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
262 B
Nix
Raw Normal View History

{ buildDunePackage, qcheck-core, ounit }:
buildDunePackage {
pname = "qcheck-ounit";
2022-07-17 12:53:33 +01:00
inherit (qcheck-core) version src;
propagatedBuildInputs = [ qcheck-core ounit ];
meta = qcheck-core.meta // {
description = "OUnit backend for qcheck";
};
}