summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/ff/pbt.nix
blob: ffd78381127be92d87ab811ddd4da0f9ce27d99d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildDunePackage, zarith, ff-sig, alcotest }:

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

  minimalOCamlVersion = "4.08";

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