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