evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / pbt.nix
blob3d0c8e7a8081fcc1e57760045616f04b367539f3
1 { 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   };