about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mirage-block/combinators.nix
blob: 9d0cdd435cbcd5d8677eed89772f4fbea8cd3795 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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.
    '';
  };

}