11 buildDunePackage rec {
16 url = "https://github.com/oklm-wsh/Callipyge/releases/download/v${version}/${pname}-${version}.tbz";
17 sha256 = "sha256-T/94a88xvK51TggjXecdKc9kyTE9aIyueIt5T24sZB0=";
22 minimumOCamlVersion = "4.03";
24 propagatedBuildInputs = [ fmt eqaf ];
26 # alcotest isn't available for OCaml < 4.08 due to fmt
27 doCheck = lib.versionAtLeast ocaml.version "4.08";
28 checkInputs = [ alcotest ];
31 homepage = "https://github.com/oklm-wsh/Callipyge";
32 description = "Curve25519 in OCaml";
33 license = lib.licenses.mit;
34 maintainers = with lib.maintainers; [ fufexan ];