python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-crypto / rng.nix
blob8900dd611d89cad19e3d323b77c4e0d018e737c9
1 { buildDunePackage, mirage-crypto, ounit2, randomconv, dune-configurator
2 , cstruct, duration, logs, mtime, ocaml_lwt }:
4 buildDunePackage rec {
5   pname = "mirage-crypto-rng";
7   inherit (mirage-crypto) version src;
9   doCheck = true;
10   checkInputs = [ ounit2 randomconv ];
12   buildInputs = [ dune-configurator ];
13   propagatedBuildInputs = [ cstruct mirage-crypto duration logs mtime ocaml_lwt ];
15   strictDeps = !doCheck;
17   meta = mirage-crypto.meta // {
18     description = "A cryptographically secure PRNG";
19   };