depot/third_party/nixpkgs/pkgs/development/ocaml-modules/ff/default.nix
Default email 4bac34ead1 Project import generated by Copybara.
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
2023-02-09 12:40:11 +01:00

22 lines
359 B
Nix

{ lib, buildDunePackage, ff-pbt, ff-sig, zarith, alcotest }:
buildDunePackage rec {
pname = "ff";
inherit (ff-sig) version src;
propagatedBuildInputs = [
ff-sig
zarith
];
checkInputs = [
alcotest
ff-pbt
];
doCheck = true;
meta = ff-sig.meta // {
description = "OCaml implementation of Finite Field operations";
};
}