ocamlPackages.mirage-block-combinators: init at 2.0.1
This commit is contained in:
parent
3d7d7b8af3
commit
30a2817831
17
pkgs/development/ocaml-modules/mirage-block/combinators.nix
Normal file
17
pkgs/development/ocaml-modules/mirage-block/combinators.nix
Normal file
@ -0,0 +1,17 @@
|
||||
{ buildDunePackage, mirage-block, io-page, logs }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "mirage-block-combinators";
|
||||
inherit (mirage-block) version src useDune2;
|
||||
|
||||
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.
|
||||
'';
|
||||
};
|
||||
|
||||
}
|
@ -575,6 +575,8 @@ let
|
||||
|
||||
mirage-block = callPackage ../development/ocaml-modules/mirage-block { };
|
||||
|
||||
mirage-block-combinators = callPackage ../development/ocaml-modules/mirage-block/combinators.nix { };
|
||||
|
||||
mirage-bootvar-unix = callPackage ../development/ocaml-modules/mirage-bootvar-unix { };
|
||||
|
||||
mirage-channel = callPackage ../development/ocaml-modules/mirage-channel { };
|
||||
|
Loading…
Reference in New Issue
Block a user