nixpkgs/pkgs/development/ocaml-modules/qcheck/alcotest.nix

14 lines
282 B
Nix
Raw Normal View History

{ buildDunePackage, qcheck-core, alcotest }:
buildDunePackage {
pname = "qcheck-alcotest";
2020-11-30 08:18:45 +01:00
inherit (qcheck-core) version useDune2 src;
propagatedBuildInputs = [ qcheck-core alcotest ];
meta = qcheck-core.meta // {
description = "Alcotest backend for qcheck";
};
}