nixpkgs/pkgs/development/ocaml-modules/hkdf/default.nix
2026-05-12 13:36:33 -05:00

34 lines
753 B
Nix

{
lib,
buildDunePackage,
fetchurl,
digestif,
alcotest,
ohex,
}:
buildDunePackage (finalAttrs: {
pname = "hkdf";
version = "2.0.0";
minimalOCamlVersion = "4.08";
src = fetchurl {
url = "https://github.com/hannesm/ocaml-hkdf/releases/download/v${finalAttrs.version}/hkdf-${finalAttrs.version}.tbz";
hash = "sha256-VLBxJ5viTTn1nK0QNIAGq/8961x0/RGHZN/C/7ITWNM=";
};
propagatedBuildInputs = [ digestif ];
checkInputs = [
alcotest
ohex
];
doCheck = true;
meta = {
description = "HMAC-based Extract-and-Expand Key Derivation Function (RFC 5869)";
homepage = "https://github.com/hannesm/ocaml-hkdf";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ sternenseemann ];
};
})