Files
nixpkgs/pkgs/development/ocaml-modules/qcheck/alcotest.nix
2025-11-04 18:45:33 +01:00

21 lines
290 B
Nix

{
buildDunePackage,
qcheck-core,
alcotest,
}:
buildDunePackage {
pname = "qcheck-alcotest";
inherit (qcheck-core) version src;
propagatedBuildInputs = [
qcheck-core
alcotest
];
meta = qcheck-core.meta // {
description = "Alcotest backend for qcheck";
};
}