summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/io-page/unix.nix
blob: 843451b30866a7692c0f4efb1e7cd316ea1307e3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, buildDunePackage, io-page, cstruct, ounit }:

buildDunePackage {
  pname = "io-page-unix";

  inherit (io-page) version src useDune2 minimumOCamlVersion;

  propagatedBuildInputs = [ cstruct io-page ];
  checkInputs = [ ounit ];
  doCheck = true;

  meta = with lib; {
    inherit (io-page.meta) homepage license;
    description = "Support for efficient handling of I/O memory pages on Unix";
    maintainers = [ maintainers.sternenseemann ];
  };
}