python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-block / combinators.nix
blob7dee169afd5b094473ad2e40c31f4b2ca9baa030
1 { buildDunePackage, mirage-block, io-page, logs }:
3 buildDunePackage rec {
4   pname = "mirage-block-combinators";
5   inherit (mirage-block) version src;
7   propagatedBuildInputs = [ mirage-block io-page logs ];
9   meta = mirage-block.meta // {
10     description = "Block signatures and implementations for MirageOS using Lwt";
11     longDescription = ''
12       This repo contains generic operations over Mirage `BLOCK` devices.
13       This package is specialised to the Lwt concurrency library for IO.
14     '';
15   };