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

15 lines
263 B
Nix

{ buildDunePackage, qcheck-ounit }:
buildDunePackage {
pname = "qcheck";
inherit (qcheck-ounit) version src patches;
propagatedBuildInputs = [ qcheck-ounit ];
meta = qcheck-ounit.meta // {
description = "Compatibility package for qcheck";
};
}