nixpkgs/pkgs/development/ocaml-modules/io-page/unix.nix
2020-11-26 06:55:12 +01:00

18 lines
458 B
Nix

{ 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 ];
};
}