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

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

  minimalOCamlVersion = "4.08";

  checkInputs = [
    alcotest
  ];

  propagatedBuildInputs = [
    zarith
    ff-sig
  ];

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