nixpkgs/pkgs/development/ocaml-modules/ff/default.nix
Vincent Laporte bb38470b96 ocamlPackages.ff: 0.4.0 → 0.6.2
ocamlPackages.ff-pbt: 0.6.1 → 0.6.2
ocamlPackages.ff-sig: 0.6.1 → 0.6.2
2022-10-12 19:58:38 +02:00

23 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";
};
}