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

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

16 lines
303 B
Nix
Raw Normal View History

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