e69aee3280
ocamlPackages.mirage-block: 2.0.1 → 3.0.0 ocamlPackages.mirage-block-ramdisk: disable tests ocamlPackages.mirage-block-unix: 2.12.1 → 2.14.1 ocamlPackages.mirage-unix: 4.0.0 → 4.0.1 ocamlPackages.vchan: 6.0.0 → 6.0.1 ocamlPackages.wodan-unix: mark as broken
17 lines
510 B
Nix
17 lines
510 B
Nix
{ buildDunePackage, mirage-block, io-page, logs }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "mirage-block-combinators";
|
|
inherit (mirage-block) version src;
|
|
|
|
propagatedBuildInputs = [ mirage-block io-page logs ];
|
|
|
|
meta = mirage-block.meta // {
|
|
description = "Block signatures and implementations for MirageOS using Lwt";
|
|
longDescription = ''
|
|
This repo contains generic operations over Mirage `BLOCK` devices.
|
|
This package is specialised to the Lwt concurrency library for IO.
|
|
'';
|
|
};
|
|
|
|
}
|