depot/third_party/nixpkgs/pkgs/development/ocaml-modules/mirage-crypto/rng-async.nix
Default email b41113241d Project import generated by Copybara.
GitOrigin-RevId: ae1dc133ea5f1538d035af41e5ddbc2ebcb67b90
2022-09-22 14:36:57 +02:00

27 lines
464 B
Nix

{ lib, buildDunePackage
, mirage-crypto, mirage-crypto-rng
, dune-configurator, async, logs
}:
buildDunePackage {
pname = "mirage-crypto-rng-async";
inherit (mirage-crypto) version 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";
};
}