4bac34ead1
GitOrigin-RevId: 724bfc0892363087709bd3a5a1666296759154b1
22 lines
359 B
Nix
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";
|
|
};
|
|
}
|