c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
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";
|
|
};
|
|
}
|