1{
2 lib,
3 fetchurl,
4 buildDunePackage,
5}:
6
7buildDunePackage rec {
8 minimalOCamlVersion = "4.07";
9 pname = "eqaf";
10 version = "0.10";
11
12 src = fetchurl {
13 url = "https://github.com/mirage/eqaf/releases/download/v${version}/eqaf-${version}.tbz";
14 hash = "sha256-Z9E2nFfE0tFKENAmMtReNVIkq+uYrsCJecC65YQwku4=";
15 };
16
17 meta = {
18 description = "Constant time equal function to avoid timing attacks in OCaml";
19 homepage = "https://github.com/mirage/eqaf";
20 license = lib.licenses.mit;
21 maintainers = [ lib.maintainers.vbgl ];
22 };
23
24}