a0cb138ada
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
22 lines
365 B
Nix
22 lines
365 B
Nix
{ lib, buildDunePackage, ff-pbt, ff-sig, zarith, alcotest }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ff";
|
|
inherit (ff-sig) version src;
|
|
|
|
propagatedBuildInputs = [
|
|
ff-sig
|
|
zarith
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
alcotest
|
|
ff-pbt
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
meta = ff-sig.meta // {
|
|
description = "OCaml implementation of Finite Field operations";
|
|
};
|
|
}
|