evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-crypto / rng-async.nix
blobbc94e33313164521b6ea7a741a086cb554ea28a8
1 { buildDunePackage
2 , mirage-crypto, mirage-crypto-rng
3 , dune-configurator, async, logs
4 }:
6 buildDunePackage {
7   pname = "mirage-crypto-rng-async";
9   inherit (mirage-crypto) version src;
11   duneVersion = "3";
13   buildInputs = [
14     dune-configurator
15   ];
17   propagatedBuildInputs = [
18     async
19     logs
20     mirage-crypto
21     mirage-crypto-rng
22   ];
24   strictDeps = true;
26   meta = mirage-crypto.meta // {
27     description = "Feed the entropy source in an Async-friendly way";
28   };