python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / shared-memory-ring / lwt.nix
blobe3ae1ef2e3dc4417ae7800fd6c40b8cffc41a15a
1 { lib
2 , buildDunePackage
3 , shared-memory-ring
4 , ppx_cstruct
5 , cstruct
6 , lwt
7 , lwt-dllist
8 , mirage-profile
9 , ounit
12 buildDunePackage {
13   pname = "shared-memory-ring-lwt";
15   inherit (shared-memory-ring) version src;
17   buildInputs = [
18     ppx_cstruct
19   ];
21   propagatedBuildInputs = [
22     shared-memory-ring
23     cstruct
24     lwt
25     lwt-dllist
26     mirage-profile
27   ];
29   doCheck = true;
30   checkInputs = [
31     ounit
32   ];
34   meta = shared-memory-ring.meta // {
35     description = "Shared memory rings for RPC and bytestream communications using Lwt";
36   };