nixpkgs/pkgs/development/ocaml-modules/lwt/default.nix

51 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, buildOcaml, fetchzip, which, cryptopp, ocaml, findlib, ocamlbuild, camlp4
2016-11-21 18:20:43 +00:00
, ocaml_react, ocaml_ssl, libev, pkgconfig, ncurses, ocaml_oasis, glib
2017-04-13 19:26:05 +00:00
, ppx_tools, result, cppo
2016-11-21 18:20:43 +00:00
, ppxSupport ? stdenv.lib.versionAtLeast ocaml.version "4.02"
}:
2017-04-13 19:26:05 +00:00
let param =
if stdenv.lib.versionAtLeast ocaml.version "4.02"
then {
version = "2.7.1";
sha256 = "0w7f59havrl2fsnvs84lm7wlqpsrldg80gy5afpnpr21zkw22g8w";
} else {
version = "2.6.0";
sha256 = "0f1h83zh60rspm4fxd96z9h5bkhq1n1q968hgq92sq4a6bfi1c2w";
};
in
buildOcaml rec {
name = "lwt";
2017-04-13 19:26:05 +00:00
inherit (param) version;
2015-02-16 10:23:43 +00:00
src = fetchzip {
url = "https://github.com/ocsigen/lwt/archive/${version}.tar.gz";
2017-04-13 19:26:05 +00:00
inherit (param) sha256;
};
2017-04-13 19:26:05 +00:00
buildInputs = [ ocaml_oasis pkgconfig which cryptopp ocaml findlib ocamlbuild glib ncurses camlp4 cppo ]
2016-11-21 18:20:43 +00:00
++ stdenv.lib.optional ppxSupport ppx_tools;
2014-07-18 15:04:16 +00:00
2016-11-21 18:20:43 +00:00
propagatedBuildInputs = [ result ocaml_react ocaml_ssl libev ];
2016-11-21 18:20:43 +00:00
configureScript = "ocaml setup.ml -configure";
prefixKey = "--prefix ";
configureFlags = [ "--enable-glib" "--enable-ssl" "--enable-react" "--enable-camlp4" ]
++ [ (if ppxSupport then "--enable-ppx" else "--disable-ppx") ];
createFindlibDestdir = true;
hasSharedObjects = true;
meta = with stdenv.lib; {
homepage = http://ocsigen.org/lwt;
description = "Lightweight thread library for Objective Caml";
license = licenses.lgpl21;
platforms = ocaml.meta.platforms or [];
maintainers = with maintainers; [
z77z vbgl gal_bolle
];
};
}