python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-crypto / rng-async.nix
blob5752507f9ef9087eb9bfa377f5aa53ae1d1d53a2
1 { lib, 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   buildInputs = [
12     dune-configurator
13   ];
15   propagatedBuildInputs = [
16     async
17     logs
18     mirage-crypto
19     mirage-crypto-rng
20   ];
22   strictDeps = true;
24   meta = mirage-crypto.meta // {
25     description = "Feed the entropy source in an Async-friendly way";
26   };