2022-10-21 18:38:19 +00:00
|
|
|
{ lib, buildDunePackage, ff-pbt, ff-sig, zarith, alcotest }:
|
2021-07-16 19:40:57 +00:00
|
|
|
|
|
|
|
buildDunePackage rec {
|
|
|
|
pname = "ff";
|
2022-10-21 18:38:19 +00:00
|
|
|
inherit (ff-sig) version src;
|
2021-07-16 19:40:57 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2022-10-21 18:38:19 +00:00
|
|
|
ff-sig
|
2021-07-16 19:40:57 +00:00
|
|
|
zarith
|
|
|
|
];
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
alcotest
|
2022-10-21 18:38:19 +00:00
|
|
|
ff-pbt
|
2021-07-16 19:40:57 +00:00
|
|
|
];
|
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
doCheck = true;
|
2021-07-16 19:40:57 +00:00
|
|
|
|
2022-10-21 18:38:19 +00:00
|
|
|
meta = ff-sig.meta // {
|
2021-07-16 19:40:57 +00:00
|
|
|
description = "OCaml implementation of Finite Field operations";
|
|
|
|
};
|
|
|
|
}
|