Vincent Laporte 064ca47574 ocamlPackages.qcheck: 0.24 → 0.25
ocamlPackages.ppx_deriving_qcheck: keep at 0.6
2025-04-17 21:04:48 +02:00

21 lines
298 B
Nix

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