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

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

24 lines
647 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage, cstruct, bigarray-compat }:
2019-10-07 08:44:19 +02:00
buildDunePackage rec {
minimumOCamlVersion = "4.03";
pname = "eqaf";
2022-03-21 04:26:41 +01:00
version = "0.8";
2020-11-19 07:36:23 +01:00
useDune2 = true;
2019-10-07 08:44:19 +02:00
src = fetchurl {
url = "https://github.com/mirage/eqaf/releases/download/v${version}/eqaf-v${version}.tbz";
2022-03-21 04:26:41 +01:00
sha256 = "sha256-EUWhYBB0N9eUPgLkht9r0jPTk37BpZfX+jntuUcc+HU=";
2019-10-07 08:44:19 +02:00
};
propagatedBuildInputs = [ cstruct bigarray-compat ];
2019-10-07 08:44:19 +02:00
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 ];
};
}