nixpkgs/pkgs/development/ocaml-modules/ff/pbt.nix
Vincent Laporte bb38470b96 ocamlPackages.ff: 0.4.0 → 0.6.2
ocamlPackages.ff-pbt: 0.6.1 → 0.6.2
ocamlPackages.ff-sig: 0.6.1 → 0.6.2
2022-10-12 19:58:38 +02:00

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