nixpkgs/pkgs/development/ocaml-modules/ff/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
375 B
Nix
Raw Normal View History

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