ocamlPackages.ocaml_lwt: use buildOcaml

This adds the shared objects setup hook to prepare
CAML_LD_LIBRARY_PATH.
This commit is contained in:
Patrick Mahoney 2017-04-22 13:33:09 -05:00
parent 2f481960cf
commit 02682e5093

View file

@ -1,4 +1,4 @@
{ stdenv, fetchzip, which, cryptopp, ocaml, findlib, ocamlbuild, camlp4
{ stdenv, buildOcaml, fetchzip, which, cryptopp, ocaml, findlib, ocamlbuild, camlp4
, ocaml_react, ocaml_ssl, libev, pkgconfig, ncurses, ocaml_oasis, glib
, ppx_tools, result, cppo
, ppxSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02"
@ -15,8 +15,8 @@ let param =
};
in
stdenv.mkDerivation rec {
name = "ocaml-lwt-${version}";
buildOcaml rec {
name = "lwt";
inherit (param) version;
src = fetchzip {
@ -36,6 +36,8 @@ stdenv.mkDerivation rec {
createFindlibDestdir = true;
hasSharedObjects = true;
meta = with stdenv.lib; {
homepage = http://ocsigen.org/lwt;
description = "Lightweight thread library for Objective Caml";