My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/ocaml-modules/ff/pbt.nix

21 lines
413 B

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