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

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

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";
};
}