ocamlPackages.resource-pooling: init at 0.5.2

A library for pooling resources like connections, threads, or similar.

Homepage: https://github.com/ocsigen/resource-pooling
This commit is contained in:
Vincent Laporte 2019-01-04 18:50:22 +01:00 committed by Vincent Laporte
parent 98686d3b7f
commit db217a8aca
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, lwt_log }:
let pname = "resource-pooling"; in
if !stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "${pname} is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
version = "0.5.2";
name = "ocaml${ocaml.version}-${pname}-${version}";
src = fetchFromGitHub {
owner = "ocsigen";
repo = pname;
rev = version;
sha256 = "00rz1i61w2dy108hzv38rblnsv6b56b5a1mk5h3zddpivcljp2dh";
};
buildInputs = [ ocaml findlib ocamlbuild ];
propagatedBuildInputs = [ lwt_log ];
configurePhase = "ocaml setup.ml -configure --prefix $out";
buildPhase = "ocaml setup.ml -build";
createFindlibDestdir = true;
installPhase = "ocaml setup.ml -install";
meta = {
inherit (src.meta) homepage;
inherit (ocaml.meta) platforms;
description = "A library for pooling resources like connections, threads, or similar";
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.vbgl ];
};
}

View file

@ -589,6 +589,8 @@ let
re2_p4 = callPackage ../development/ocaml-modules/re2 { };
resource-pooling = callPackage ../development/ocaml-modules/resource-pooling { };
result = callPackage ../development/ocaml-modules/ocaml-result { };
seq = callPackage ../development/ocaml-modules/seq { };