Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
20 lines
544 B
Nix
20 lines
544 B
Nix
{ lib, fetchurl, buildDunePackage }:
|
|
|
|
buildDunePackage rec {
|
|
minimalOCamlVersion = "4.07";
|
|
pname = "eqaf";
|
|
version = "0.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/eqaf/releases/download/v${version}/eqaf-${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 ];
|
|
};
|
|
|
|
}
|