Adds ocaml-io-page

This OCaml library implements support for efficient handling of I/O
memory pages on Unix and Xen.

Homepage: https://github.com/mirage/io-page
This commit is contained in:
Vincent Laporte
2015-03-02 11:26:03 +01:00
parent 2ee6e81896
commit 7365907de5
2 changed files with 26 additions and 0 deletions
@@ -0,0 +1,24 @@
{ stdenv, fetchzip, ocaml, findlib, cstruct }:
let version = "1.4.0"; in
stdenv.mkDerivation {
name = "ocaml-io-page-${version}";
src = fetchzip {
url = "https://github.com/mirage/io-page/archive/v${version}.tar.gz";
sha256 = "05m1gbcy72i6gikdijbkpw8pfygc86a3l4k8ayyl58019l6qa2fq";
};
buildInputs = [ ocaml findlib ];
propagatedBuildInputs = [ cstruct ];
createFindlibDestdir = true;
meta = {
homepage = https://github.com/mirage/io-page;
platforms = ocaml.meta.platforms;
description = "IO memory page library for Mirage backends";
maintainers = with stdenv.lib.maintainers; [ vbgl ];
};
}