Files
nixpkgs/pkgs/development/ocaml-modules/ff/pbt.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
423 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
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";
};
}