evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / development / ocaml-modules / mirage-block / combinators.nix
blobfc50002da1e627a96fd12bd7790fb8e34498a030
1 { buildDunePackage, mirage-block, logs }:
3 buildDunePackage rec {
4   pname = "mirage-block-combinators";
5   inherit (mirage-block) version src;
7   duneVersion = "3";
9   propagatedBuildInputs = [ mirage-block logs ];
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   };