4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
23 lines
398 B
Nix
23 lines
398 B
Nix
{ 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";
|
|
};
|
|
}
|