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.

22 lines
413 B
Nix
Raw Normal View History

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