summaryrefslogtreecommitdiffstats
path: root/pkgs/development/ocaml-modules/ff/pbt.nix
blob: dccad2b6c609eba1c168bbf1834203e4a3bcbe6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
  buildDunePackage,
  zarith,
  ff-sig,
  alcotest,
}:

buildDunePackage {
  pname = "ff-pbt";
  inherit (ff-sig) version src;

  minimalOCamlVersion = "4.08";
  duneVersion = "3";

  checkInputs = [
    alcotest
  ];

  doCheck = true;

  propagatedBuildInputs = [
    zarith
    ff-sig
  ];

  meta = ff-sig.meta // {
    description = "Property based testing library for finite fields over the package ff-sig";
  };
}