nixpkgs/pkgs/development/ocaml-modules/mirage-crypto/rng-async.nix
Vincent Laporte 5b9a398716
ocamlPackages.mirage-unix: 4.0.1 → 5.0.0
ocamlPackages.mirage-crypto: 0.10.5 → 0.10.6
2022-09-15 15:35:45 +02:00

28 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";
};
}