ocamlPackages.io-page-unix: init at 2.3.0

This commit is contained in:
sternenseemann 2020-05-21 00:45:07 +02:00 committed by Vincent Laporte
parent 8852d537b2
commit dde2efb95d
2 changed files with 19 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ lib, buildDunePackage, io-page, cstruct, ounit }:
buildDunePackage {
pname = "io-page-unix";
inherit (io-page) version src 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 ];
};
}

View file

@ -320,6 +320,8 @@ let
io-page = callPackage ../development/ocaml-modules/io-page { };
io-page-unix = callPackage ../development/ocaml-modules/io-page/unix.nix { };
ipaddr = callPackage ../development/ocaml-modules/ipaddr { };
irmin_1 = callPackage ../development/ocaml-modules/irmin/1.4.nix { };