depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mirage-crypto/rng-async.nix
Default email 8e65f7f0cc Project import generated by Copybara.
GitOrigin-RevId: 062a0c5437b68f950b081bbfc8a699d57a4ee026
2022-03-05 17:20:37 +01:00

27 lines
493 B
Nix

{ lib, buildDunePackage
, mirage-crypto, mirage-crypto-rng
, dune-configurator, async, logs
}:
buildDunePackage {
pname = "mirage-crypto-rng-async";
inherit (mirage-crypto) useDune2 version minimumOCamlVersion src;
buildInputs = [
dune-configurator
];
propagatedBuildInputs = [
async
logs
mirage-crypto
mirage-crypto-rng
];
strictDeps = true;
meta = mirage-crypto.meta // {
description = "Feed the entropy source in an Async-friendly way";
};
}