mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
2db064d028
ocamlPackages.lwt-canceler: 0.2 -> 0.3 ocamlPackages.json-data-encoding: 0.8 -> 0.10 ocamlPackages.data-encoding: 0.2.0 -> 0.4.0 ocamlPackages.ff-sig, ff-pbt: init at 0.6.1 ocamlPacakges.bls12-381: 0.3.15 -> 0.4.2 Co-authored-by: Vincent Laporte <vbgl@users.noreply.github.com>
22 lines
413 B
Nix
22 lines
413 B
Nix
{ 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";
|
|
};
|
|
}
|