nixpkgs/pkgs/development/ocaml-modules/ff/default.nix
2023-04-11 06:36:05 +02:00

24 lines
380 B
Nix

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