fblog: 4.4.0 -> 4.5.0
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / pbt.nix
blobfe8234c2572c0d358528732f888c60026a161819
1 { lib, buildDunePackage, zarith, ff-sig, alcotest }:
3 buildDunePackage {
4   pname = "ff-pbt";
5   inherit (ff-sig) version src;
7   minimalOCamlVersion = "4.08";
8   duneVersion = "3";
10   checkInputs = [
11     alcotest
12   ];
14   doCheck = true;
16   propagatedBuildInputs = [
17     zarith
18     ff-sig
19   ];
21   meta = ff-sig.meta // {
22     description = "Property based testing library for finite fields over the package ff-sig";
23   };