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

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

43 lines
858 B
Nix
Raw Normal View History

2022-10-11 07:20:19 +00:00
{ lib, fetchzip, buildDunePackage, ocaml
, zarith, eqaf, bigarray-compat, hex, ff-sig, ff
, alcotest, bisect_ppx
}:
2022-10-11 07:20:19 +00:00
buildDunePackage rec {
pname = "mec";
version = "0.1.0";
src = fetchzip {
url = "https://gitlab.com/nomadic-labs/cryptography/ocaml-ec/-/archive/${version}/ocaml-ec-${version}.tar.bz2";
sha256 = "sha256-uIcGj/exSfuuzsv6C/bnJXpYRu3OY3dcKMW/7+qwi2U=";
};
2022-10-21 08:26:24 +00:00
duneVersion = "3";
2022-10-11 07:20:19 +00:00
minimalOCamlVersion = "4.12";
propagatedBuildInputs = [
eqaf
bigarray-compat
hex
ff-sig
ff
alcotest
];
buildInputs = [
zarith
];
checkInputs = [
2022-10-11 07:20:19 +00:00
alcotest
bisect_ppx
];
meta = {
description = "Mec - Mini Elliptic Curve library";
homepage = "https://gitlab.com/nomadic-labs/cryptography/ocaml-ec";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.ulrikstrid ];
};
}