1{ buildDunePackage, mirage-block, logs }:
2
3buildDunePackage rec {
4 pname = "mirage-block-combinators";
5 inherit (mirage-block) version src;
6
7 duneVersion = "3";
8
9 propagatedBuildInputs = [ mirage-block logs ];
10
11 meta = mirage-block.meta // {
12 description = "Block signatures and implementations for MirageOS using Lwt";
13 longDescription = ''
14 This repo contains generic operations over Mirage `BLOCK` devices.
15 This package is specialised to the Lwt concurrency library for IO.
16 '';
17 };
18
19}