fblog: 4.4.0 -> 4.5.0
[NixPkgs.git] / pkgs / development / ocaml-modules / ff / default.nix
blobbffec212b93e3897716da09ecb5791cbd979089a
1 { lib, buildDunePackage, ff-pbt, ff-sig, zarith, alcotest }:
3 buildDunePackage rec {
4   pname = "ff";
5   inherit (ff-sig) version src;
6   duneVersion = "3";
8   propagatedBuildInputs = [
9     ff-sig
10     zarith
11   ];
13   checkInputs = [
14     alcotest
15     ff-pbt
16   ];
18   doCheck = true;
20   meta = ff-sig.meta // {
21     description = "OCaml implementation of Finite Field operations";
22   };