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